Skip to content

Commit

Permalink
python.pkgs.zstandard: use libzstd instead of python zstd
Browse files Browse the repository at this point in the history
  • Loading branch information
FRidh committed Jul 2, 2020
1 parent 6eb63fc commit 3b4df94
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pkgs/development/python-modules/zstandard/default.nix
Expand Up @@ -15,7 +15,8 @@ buildPythonPackage rec {
sha256 = "e5cbd8b751bd498f275b0582f449f92f14e64f4e03b5bf51c571240d40d43561";
};

propagatedBuildInputs = [ cffi zstd ];
buildInputs = [ zstd ];
propagatedBuildInputs = [ cffi ];

checkInputs = [ hypothesis ];

Expand Down
4 changes: 3 additions & 1 deletion pkgs/top-level/python-packages.nix
Expand Up @@ -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 { };

Expand Down

0 comments on commit 3b4df94

Please sign in to comment.