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

22 lines
487 B
Nix
Raw Normal View History

2019-04-06 15:55:12 +01:00
{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
2019-11-19 14:35:40 +00:00
version = "1.4.3";
2019-04-06 15:55:12 +01:00
pname = "xxhash";
src = fetchPypi {
inherit pname version;
2019-11-19 14:35:40 +00:00
sha256 = "8b6b1afe7731d7d9cbb0398b4a811ebb5e6be5c174f72c68abf81f919a435de9";
2019-04-06 15:55:12 +01:00
};
meta = with stdenv.lib; {
homepage = https://github.com/ifduyue/python-xxhash;
description = "Python Binding for xxHash https://pypi.org/project/xxhash/";
license = licenses.bsd2;
maintainers = [ maintainers.teh ];
};
}