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

22 lines
487 B
Nix
Raw Normal View History

{ lib, stdenv
2019-04-06 15:55:12 +01:00
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
2020-08-16 18:31:20 +01:00
version = "2.0.0";
2019-04-06 15:55:12 +01:00
pname = "xxhash";
src = fetchPypi {
inherit pname version;
2020-08-16 18:31:20 +01:00
sha256 = "58ca818554c1476fa1456f6cd4b87002e2294f09baf0f81e5a2a4968e62c423c";
2019-04-06 15:55:12 +01:00
};
meta = with 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 ];
};
}