python.pkgs.zstandard: use libzstd instead of python zstd
This commit is contained in:
parent
6eb63fc2e5
commit
3b4df94aeb
2 changed files with 5 additions and 2 deletions
|
@ -15,7 +15,8 @@ buildPythonPackage rec {
|
|||
sha256 = "e5cbd8b751bd498f275b0582f449f92f14e64f4e03b5bf51c571240d40d43561";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ cffi zstd ];
|
||||
buildInputs = [ zstd ];
|
||||
propagatedBuildInputs = [ cffi ];
|
||||
|
||||
checkInputs = [ hypothesis ];
|
||||
|
||||
|
|
|
@ -7298,7 +7298,9 @@ in {
|
|||
inherit (pkgs) zstd pkgconfig;
|
||||
};
|
||||
|
||||
zstandard = callPackage ../development/python-modules/zstandard { };
|
||||
zstandard = callPackage ../development/python-modules/zstandard {
|
||||
inherit (pkgs) zstd;
|
||||
};
|
||||
|
||||
zxcvbn = callPackage ../development/python-modules/zxcvbn { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue