nixpkgs/pkgs/development/python-modules/murmurhash/default.nix

38 lines
694 B
Nix
Raw Normal View History

2017-05-14 22:26:25 +00:00
{ stdenv
, buildPythonPackage
2018-03-12 22:44:45 +00:00
, fetchPypi
2017-05-14 22:26:25 +00:00
, cython
}:
buildPythonPackage rec {
pname = "murmurhash";
2019-02-23 14:36:01 +00:00
version = "1.0.2";
2018-03-12 22:44:45 +00:00
src = fetchPypi {
inherit pname version;
2019-02-23 14:36:01 +00:00
sha256 = "c7a646f6b07b033642b4f52ae2e45efd8b80780b3b90e8092a0cec935fbf81e2";
2017-05-14 22:26:25 +00:00
};
2019-02-15 08:46:46 +00:00
postPatch = ''
substituteInPlace setup.py --replace "'wheel>=0.32.0,<0.33.0'" ""
'';
2017-05-14 22:26:25 +00:00
buildInputs = [
cython
];
2018-03-12 22:44:45 +00:00
# No test
doCheck = false;
2017-05-14 22:26:25 +00:00
checkPhase = ''
2018-03-12 22:44:45 +00:00
pytest murmurhash
2017-05-14 22:26:25 +00:00
'';
2017-05-14 22:26:25 +00:00
meta = with stdenv.lib; {
description = "Cython bindings for MurmurHash2";
homepage = "https://github.com/explosion/murmurhash";
2017-05-14 22:26:25 +00:00
license = licenses.mit;
2018-03-12 22:44:45 +00:00
maintainers = with maintainers; [ aborsu sdll ];
};
2017-05-14 22:26:25 +00:00
}