tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
gixy: use nose3 for python 3.11 compatibility
Theodore Ni
2 years ago
172e1980
a63a64b5
+2
-1
1 changed file
expand all
collapse all
unified
split
pkgs
tools
admin
gixy
default.nix
+2
-1
pkgs/tools/admin/gixy/default.nix
···
21
python.pkgs.buildPythonApplication rec {
22
pname = "gixy";
23
version = "0.1.20";
0
24
25
# package is only compatible with python 2.7 and 3.5+
26
disabled = with python.pkgs; !(pythonAtLeast "3.5" || isPy27);
···
42
configargparse
43
pyparsing
44
jinja2
45
-
nose
46
setuptools
47
six
48
];
···
21
python.pkgs.buildPythonApplication rec {
22
pname = "gixy";
23
version = "0.1.20";
24
+
format = "setuptools";
25
26
# package is only compatible with python 2.7 and 3.5+
27
disabled = with python.pkgs; !(pythonAtLeast "3.5" || isPy27);
···
43
configargparse
44
pyparsing
45
jinja2
46
+
nose3
47
setuptools
48
six
49
];