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

28 lines
564 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, cffi
, hypothesis
}:
buildPythonPackage rec {
pname = "zstandard";
version = "0.14.1";
2020-08-24 19:07:09 -07:00
src = fetchPypi {
inherit pname version;
sha256 = "5dd700e52ec28c64d43f681ccde76b6436c8f89a332d6c9e22a6b629f28daeb5";
};
2020-08-24 19:07:09 -07:00
propagatedBuildInputs = [ cffi ];
2020-08-24 19:07:09 -07:00
checkInputs = [ hypothesis ];
2020-08-24 19:07:09 -07:00
meta = with lib; {
description = "zstandard bindings for Python";
homepage = "https://github.com/indygreg/python-zstandard";
license = licenses.bsdOriginal;
maintainers = [ maintainers.arnoldfarkas ];
};
}