nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

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, ··· 13 12 14 13 buildPythonPackage rec { 15 14 pname = "pyseventeentrack"; 16 - version = "1.0.2"; 15 + version = "1.1.1"; 17 16 pyproject = true; 18 17 19 18 src = fetchFromGitHub { 20 19 owner = "shaiu"; 21 20 repo = "pyseventeentrack"; 22 21 tag = "v${version}"; 23 - hash = "sha256-B/p+7wuXMtdOlIOySGQdtiiErcVD8DaVJPvSX4lPnos="; 22 + hash = "sha256-XFn9yZbUrvERBQW1PumwtAPHhcyRX9L+JKxE/NZjZys="; 24 23 }; 25 24 26 25 build-system = [ poetry-core ]; 27 26 27 + pythonRelaxDeps = [ "cryptography" ]; 28 + 28 29 dependencies = [ 29 30 aiohttp 30 31 attrs 32 + cryptography 31 33 pytz 32 34 ]; 33 35