Loading pkgs/development/python-modules/murmurhash/default.nix +11 −6 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchPypi , cython , fetchPypi , pythonOlder }: buildPythonPackage rec { pname = "murmurhash"; version = "1.0.9"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; sha256 = "sha256-/no4yw09h8FOyd3cSTL/4tvHfXVGmrgP1QFGibDge1g="; hash = "sha256-/no4yw09h8FOyd3cSTL/4tvHfXVGmrgP1QFGibDge1g="; }; postPatch = '' substituteInPlace setup.py --replace "'wheel>=0.32.0,<0.33.0'" "" substituteInPlace setup.py \ --replace "'wheel>=0.32.0,<0.33.0'" "" ''; buildInputs = [ Loading @@ -24,9 +29,9 @@ buildPythonPackage rec { # No test doCheck = false; checkPhase = '' pytest murmurhash ''; pythonImportsCheck = [ "murmurhash" ]; meta = with lib; { description = "Cython bindings for MurmurHash2"; Loading Loading
pkgs/development/python-modules/murmurhash/default.nix +11 −6 Original line number Diff line number Diff line { lib , buildPythonPackage , fetchPypi , cython , fetchPypi , pythonOlder }: buildPythonPackage rec { pname = "murmurhash"; version = "1.0.9"; format = "setuptools"; disabled = pythonOlder "3.6"; src = fetchPypi { inherit pname version; sha256 = "sha256-/no4yw09h8FOyd3cSTL/4tvHfXVGmrgP1QFGibDge1g="; hash = "sha256-/no4yw09h8FOyd3cSTL/4tvHfXVGmrgP1QFGibDge1g="; }; postPatch = '' substituteInPlace setup.py --replace "'wheel>=0.32.0,<0.33.0'" "" substituteInPlace setup.py \ --replace "'wheel>=0.32.0,<0.33.0'" "" ''; buildInputs = [ Loading @@ -24,9 +29,9 @@ buildPythonPackage rec { # No test doCheck = false; checkPhase = '' pytest murmurhash ''; pythonImportsCheck = [ "murmurhash" ]; meta = with lib; { description = "Cython bindings for MurmurHash2"; Loading