tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.pyzstd: 0.16.2 -> 0.17.0
25huizengek1
11 months ago
269f7b0e
0922a79c
+13
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
python-modules
pyzstd
default.nix
+13
-2
pkgs/development/python-modules/pyzstd/default.nix
reviewed
···
3
3
fetchFromGitHub,
4
4
lib,
5
5
pytestCheckHook,
6
6
+
pythonOlder,
6
7
setuptools,
8
8
+
typing-extensions,
7
9
zstd-c,
8
10
}:
11
11
+
9
12
buildPythonPackage rec {
10
13
pname = "pyzstd";
11
11
-
version = "0.16.2";
14
14
+
version = "0.17.0";
12
15
pyproject = true;
13
16
14
17
src = fetchFromGitHub {
15
18
owner = "Rogdham";
16
19
repo = "pyzstd";
17
20
tag = version;
18
18
-
hash = "sha256-Az+0m1XUFxExBZK8bcjK54Zt2d5ZlAKRMZRdr7rPcss=";
21
21
+
hash = "sha256-PICYdB/xu/q2wjbkF2nziZt8z8PmzJ5eM+Yq0rpLfEU=";
19
22
};
20
23
21
24
postPatch = ''
···
31
34
32
35
build-system = [
33
36
setuptools
37
37
+
];
38
38
+
39
39
+
dependencies = lib.optionals (pythonOlder "3.13") [
40
40
+
typing-extensions
41
41
+
];
42
42
+
43
43
+
pythonRelaxDeps = [
44
44
+
"typing-extensions"
34
45
];
35
46
36
47
buildInputs = [