mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
python.pkgs.zstandard: it vendors a copy of zstd...
so we don't even need to give zstd at all.
Related discussion https://github.com/NixOS/nixpkgs/issues/92075.
Follow-up to 3b4df94aeb
This commit is contained in:
parent
3b4df94aeb
commit
0091e0358b
2 changed files with 1 additions and 5 deletions
|
@ -3,7 +3,6 @@
|
|||
, fetchPypi
|
||||
, cffi
|
||||
, hypothesis
|
||||
, zstd
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -15,7 +14,6 @@ buildPythonPackage rec {
|
|||
sha256 = "e5cbd8b751bd498f275b0582f449f92f14e64f4e03b5bf51c571240d40d43561";
|
||||
};
|
||||
|
||||
buildInputs = [ zstd ];
|
||||
propagatedBuildInputs = [ cffi ];
|
||||
|
||||
checkInputs = [ hypothesis ];
|
||||
|
|
|
@ -7298,9 +7298,7 @@ in {
|
|||
inherit (pkgs) zstd pkgconfig;
|
||||
};
|
||||
|
||||
zstandard = callPackage ../development/python-modules/zstandard {
|
||||
inherit (pkgs) zstd;
|
||||
};
|
||||
zstandard = callPackage ../development/python-modules/zstandard { };
|
||||
|
||||
zxcvbn = callPackage ../development/python-modules/zxcvbn { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue