pythonPackages.zstandard: init at 0.13.0 (#79215)
This commit is contained in:
parent
7666bf47c7
commit
7c92d539c1
28
pkgs/development/python-modules/zstandard/default.nix
Executable file
28
pkgs/development/python-modules/zstandard/default.nix
Executable 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user