tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
auditwheel: 4.0.0 -> 5.1.2
Fabian Affolter
3 years ago
337dc8aa
d91c6440
+9
-8
1 changed file
expand all
collapse all
unified
split
pkgs
tools
package-management
auditwheel
default.nix
+9
-8
pkgs/tools/package-management/auditwheel/default.nix
···
8
8
9
9
python3.pkgs.buildPythonApplication rec {
10
10
pname = "auditwheel";
11
11
-
version = "4.0.0";
12
12
-
13
13
-
disabled = python3.pkgs.pythonOlder "3.6";
11
11
+
version = "5.1.2";
12
12
+
format = "setuptools";
14
13
15
14
src = python3.pkgs.fetchPypi {
16
15
inherit pname version;
17
17
-
sha256 = "03a079fe273f42336acdb5953ff5ce7578f93ca6a832b16c835fe337a1e2bd4a";
16
16
+
hash = "sha256-PuWDABSTHqhK9c0GXGN7ZhTvoD2biL2Pv8kk5+0B1ro=";
18
17
};
19
18
20
19
nativeBuildInputs = with python3.pkgs; [
···
26
25
setuptools
27
26
];
28
27
29
29
-
# integration tests require docker and networking
30
30
-
disabledTestPaths = [ "tests/integration" ];
31
31
-
32
28
checkInputs = with python3.pkgs; [
33
29
pretend
34
30
pytestCheckHook
35
31
];
36
32
37
37
-
# ensure that there are no undeclared deps
33
33
+
# Integration tests require docker and networking
34
34
+
disabledTestPaths = [
35
35
+
"tests/integration"
36
36
+
];
37
37
+
38
38
+
# Ensure that there are no undeclared deps
38
39
postCheck = ''
39
40
PATH= PYTHONPATH= $out/bin/auditwheel --version > /dev/null
40
41
'';