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

Configure Feed

Select the types of activity you want to include in your feed.

python310Packages.pypck: 0.7.16 -> 0.7.17

Changelog: https://github.com/alengwenus/pypck/releases/tag/0.7.17

+9 -4
+9 -4
pkgs/development/python-modules/pypck/default.nix
··· 6 6 , pytest-timeout 7 7 , pytestCheckHook 8 8 , pythonOlder 9 + , setuptools 9 10 }: 10 11 11 12 buildPythonPackage rec { 12 13 pname = "pypck"; 13 - version = "0.7.16"; 14 - format = "setuptools"; 14 + version = "0.7.17"; 15 + format = "pyproject"; 15 16 16 - disabled = pythonOlder "3.8"; 17 + disabled = pythonOlder "3.9"; 17 18 18 19 src = fetchFromGitHub { 19 20 owner = "alengwenus"; 20 21 repo = pname; 21 22 rev = "refs/tags/${version}"; 22 - hash = "sha256-OcXMVgG62JUH28BGvfO/rpnC++/klhBLJ2HafDu9R40="; 23 + hash = "sha256-Vlt4+fRULb9mB0ceRmc7MJ50DnF9DAJPHA8iCbNVvcE="; 23 24 }; 25 + 26 + nativeBuildInputs = [ 27 + setuptools 28 + ]; 24 29 25 30 nativeCheckInputs = [ 26 31 pytest-asyncio