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