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

+6 -2
+6 -2
pkgs/development/python-modules/pyseventeentrack/default.nix
··· 3 3 aresponses, 4 4 attrs, 5 5 buildPythonPackage, 6 + cryptography, 6 7 fetchFromGitHub, 7 8 lib, 8 9 poetry-core, ··· 12 13 13 14 buildPythonPackage rec { 14 15 pname = "pyseventeentrack"; 15 - version = "1.0.2"; 16 + version = "1.1.1"; 16 17 pyproject = true; 17 18 18 19 src = fetchFromGitHub { 19 20 owner = "shaiu"; 20 21 repo = "pyseventeentrack"; 21 22 tag = "v${version}"; 22 - hash = "sha256-B/p+7wuXMtdOlIOySGQdtiiErcVD8DaVJPvSX4lPnos="; 23 + hash = "sha256-XFn9yZbUrvERBQW1PumwtAPHhcyRX9L+JKxE/NZjZys="; 23 24 }; 24 25 25 26 build-system = [ poetry-core ]; 26 27 28 + pythonRelaxDeps = [ "cryptography" ]; 29 + 27 30 dependencies = [ 28 31 aiohttp 29 32 attrs 33 + cryptography 30 34 pytz 31 35 ]; 32 36