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:
Frederik Rietdijk 2020-07-02 21:49:20 +02:00
parent 3b4df94aeb
commit 0091e0358b
2 changed files with 1 additions and 5 deletions

View file

@ -3,7 +3,6 @@
, fetchPypi
, cffi
, hypothesis
, zstd
}:
buildPythonPackage rec {
@ -15,7 +14,6 @@ buildPythonPackage rec {
sha256 = "e5cbd8b751bd498f275b0582f449f92f14e64f4e03b5bf51c571240d40d43561";
};
buildInputs = [ zstd ];
propagatedBuildInputs = [ cffi ];
checkInputs = [ hypothesis ];

View file

@ -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 { };