Martin Weinelt 2025-07-03 17:53:28 +02:00
parent 4febeae18f
commit db1443842d
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -3,6 +3,7 @@
aresponses,
attrs,
buildPythonPackage,
cryptography,
fetchFromGitHub,
lib,
poetry-core,
@ -12,21 +13,24 @@
buildPythonPackage rec {
pname = "pyseventeentrack";
version = "1.0.2";
version = "1.1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "shaiu";
repo = "pyseventeentrack";
tag = "v${version}";
hash = "sha256-B/p+7wuXMtdOlIOySGQdtiiErcVD8DaVJPvSX4lPnos=";
hash = "sha256-XFn9yZbUrvERBQW1PumwtAPHhcyRX9L+JKxE/NZjZys=";
};
build-system = [ poetry-core ];
pythonRelaxDeps = [ "cryptography" ];
dependencies = [
aiohttp
attrs
cryptography
pytz
];