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.15.1";
2020-08-25 03:07:09 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "cb7c6a6f7d62350b9f5539045da54422975630e34dd9069584cc776b9917115f";
};
2020-08-25 03:07:09 +01:00
propagatedBuildInputs = [ cffi ];
2020-08-25 03:07:09 +01:00
checkInputs = [ hypothesis ];
2020-08-25 03:07:09 +01:00
meta = with lib; {
description = "zstandard bindings for Python";
homepage = "https://github.com/indygreg/python-zstandard";
license = licenses.bsdOriginal;
maintainers = [ maintainers.arnoldfarkas ];
};
}