Merge pull request #186833 from r-ryantm/auto-update/python310Packages.murmurhash

python310Packages.murmurhash: 1.0.8 -> 1.0.9

authored by Fabian Affolter and committed by GitHub f7ecc542 2855d863

+12 -7
+12 -7
pkgs/development/python-modules/murmurhash/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 + , cython 3 4 , fetchPypi 4 - , cython 5 + , pythonOlder 5 6 }: 6 7 7 8 buildPythonPackage rec { 8 9 pname = "murmurhash"; 9 - version = "1.0.8"; 10 + version = "1.0.9"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.6"; 10 14 11 15 src = fetchPypi { 12 16 inherit pname version; 13 - sha256 = "sha256-i7A6rYQoN6ZLDB0u0itQ66hfn6UUdsi8CnfDZql58fM="; 17 + hash = "sha256-/no4yw09h8FOyd3cSTL/4tvHfXVGmrgP1QFGibDge1g="; 14 18 }; 15 19 16 20 postPatch = '' 17 - substituteInPlace setup.py --replace "'wheel>=0.32.0,<0.33.0'" "" 21 + substituteInPlace setup.py \ 22 + --replace "'wheel>=0.32.0,<0.33.0'" "" 18 23 ''; 19 24 20 25 buildInputs = [ ··· 24 29 # No test 25 30 doCheck = false; 26 31 27 - checkPhase = '' 28 - pytest murmurhash 29 - ''; 32 + pythonImportsCheck = [ 33 + "murmurhash" 34 + ]; 30 35 31 36 meta = with lib; { 32 37 description = "Cython bindings for MurmurHash2";