pythonPackages.zstandard: init at 0.13.0 (#79215)

This commit is contained in:
Arnold Farkas 2020-02-14 17:35:36 +01:00 committed by GitHub
parent 7666bf47c7
commit 7c92d539c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib
, buildPythonPackage
, fetchPypi
, cffi
, hypothesis
, zstd
}:
buildPythonPackage rec {
pname = "zstandard";
version = "0.13.0";
src = fetchPypi {
inherit pname version;
sha256 = "e5cbd8b751bd498f275b0582f449f92f14e64f4e03b5bf51c571240d40d43561";
};
propagatedBuildInputs = [ cffi zstd ];
checkInputs = [ hypothesis ];
meta = with lib; {
description = "zstandard bindings for Python";
homepage = "https://github.com/indygreg/python-zstandard";
license = licenses.bsdOriginal;
maintainers = [ maintainers.arnoldfarkas ];
};
}

View file

@ -6764,6 +6764,8 @@ in {
inherit (pkgs) zstd pkgconfig;
};
zstandard = callPackage ../development/python-modules/zstandard { };
zxcvbn = callPackage ../development/python-modules/zxcvbn { };
incremental = callPackage ../development/python-modules/incremental { };