nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python.pkgs.zstd: 1.3.5.1 -> 1.3.8.1

+5 -8
+5 -8
pkgs/development/python-modules/zstd/default.nix
··· 1 - { stdenv, pkgconfig, fetchpatch, fetchFromGitHub, buildPythonPackage 1 + { stdenv, pkgconfig, fetchpatch, fetchPypi, buildPythonPackage 2 2 , zstd, pytest }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "zstd"; 6 - version = "1.3.5.1"; 6 + version = "1.3.8.1"; 7 7 8 - # Switch back to fetchPypi when tests/ is included, see https://github.com/NixOS/nixpkgs/pull/49339 9 - src = fetchFromGitHub { 10 - owner = "sergey-dryabzhinsky"; 11 - repo = "python-zstd"; 12 - rev = "v${version}"; 13 - sha256 = "08n1vz4zavas4cgzpdfcbpy33lnv39xxhq5mgj0zv3xi03ypc1rl"; 8 + src = fetchPypi { 9 + inherit pname version; 10 + sha256 = "d89e884da59c35e480439f1663cb3cb4cf372e42ba0eb0bdf22b9625414702a3"; 14 11 }; 15 12 16 13 postPatch = ''