22 lines
477 B
Nix
Raw Normal View History

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