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

python310Packages.blinker: 1.4 -> 1.5

authored by

Sandro Jäckel and committed by
Martin Weinelt
73375570 51ad8c7a

+8 -8
+8 -8
pkgs/development/python-modules/blinker/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, nose }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pytestCheckHook 5 + }: 2 6 3 7 buildPythonPackage rec { 4 8 pname = "blinker"; 5 - version = "1.4"; 9 + version = "1.5"; 6 10 7 11 src = fetchPypi { 8 12 inherit pname version; 9 - sha256 = "1dpq0vb01p36jjwbhhd08ylvrnyvcc82yxx3mwjx6awrycjyw6j7"; 13 + sha256 = "sha256-kj5eL2nBVfLMQtr7vXDhbj/eJNLUqiq3L744YjiJJGI="; 10 14 }; 11 15 12 - checkInputs = [ nose ]; 13 - 14 - checkPhase = '' 15 - nosetests 16 - ''; 16 + checkInputs = [ pytestCheckHook ]; 17 17 18 18 pythonImportsCheck = [ "blinker" ]; 19 19