murmurhash: init at 0.26.4
This commit is contained in:
parent
fe17ed640a
commit
b5b2890278
34
pkgs/development/python-modules/murmurhash/default.nix
Normal file
34
pkgs/development/python-modules/murmurhash/default.nix
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, cython
|
||||||
|
, python
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
name = "murmurhash-${version}";
|
||||||
|
version = "0.26.4";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "explosion";
|
||||||
|
repo = "murmurhash";
|
||||||
|
rev = "0.26.4";
|
||||||
|
sha256 = "0n2j0glhlv2yh3fjgbg4d79j1c1fpchgjd4vnpw908l9mzchhmdv";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
cython
|
||||||
|
];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
cd murmurhash/tests
|
||||||
|
${python.interpreter} -m unittest discover -p "*test*"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Cython bindings for MurmurHash2";
|
||||||
|
homepage = https://github.com/explosion/murmurhash;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ sdll ];
|
||||||
|
};
|
||||||
|
}
|
@ -28719,6 +28719,8 @@ EOF
|
|||||||
|
|
||||||
ftfy = callPackage ../development/python-modules/ftfy { };
|
ftfy = callPackage ../development/python-modules/ftfy { };
|
||||||
|
|
||||||
|
murmurhash = callPackage ../development/python-modules/murmurhash { };
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
in fix' (extends overrides packages)
|
in fix' (extends overrides packages)
|
||||||
|
Loading…
Reference in New Issue
Block a user