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

Merge pull request #203900 from r-ryantm/auto-update/python310Packages.prefixed

python310Packages.prefixed: 0.4.2 -> 0.5.0

authored by

Fabian Affolter and committed by
GitHub
6f3bc2dc 0746bbd3

+13 -4
+13 -4
pkgs/development/python-modules/prefixed/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pytestCheckHook 5 + , pythonOlder 5 6 }: 6 7 7 8 buildPythonPackage rec { 8 9 pname = "prefixed"; 9 - version = "0.4.2"; 10 + version = "0.5.0"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.7"; 10 14 11 15 src = fetchPypi { 12 16 inherit pname version; 13 - sha256 = "sha256-gfTjvBUEbncnE6uA8IaQ5hxSzOsgFBQldU6rWwCxMMk="; 17 + hash = "sha256-sTTXNBNiULF7aO7eZaM3D6sBNEEstmvIvjVo/wW9+OQ="; 14 18 }; 15 19 16 - checkInputs = [ pytestCheckHook ]; 20 + checkInputs = [ 21 + pytestCheckHook 22 + ]; 17 23 18 - pythonImportsCheck = [ "prefixed" ]; 24 + pythonImportsCheck = [ 25 + "prefixed" 26 + ]; 19 27 20 28 meta = with lib; { 21 29 description = "Prefixed alternative numeric library"; 22 30 homepage = "https://github.com/Rockhopper-Technologies/prefixed"; 31 + changelog = "https://github.com/Rockhopper-Technologies/prefixed/releases/tag/${version}"; 23 32 license = with licenses; [ mpl20 ]; 24 33 maintainers = with maintainers; [ veprbl ]; 25 34 };