python3Packages.pyseventeentrack: 1.0.2 -> 1.1.1

https://github.com/shaiu/pyseventeentrack/releases/tag/v1.1.0
https://github.com/shaiu/pyseventeentrack/releases/tag/v1.1.1

Changed files
+6 -2
pkgs
development
python-modules
pyseventeentrack
+6 -2
pkgs/development/python-modules/pyseventeentrack/default.nix
···
aresponses,
attrs,
buildPythonPackage,
+
cryptography,
fetchFromGitHub,
lib,
poetry-core,
···
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
];