Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

gixy: use nose3 for python 3.11 compatibility

+2 -1
+2 -1
pkgs/tools/admin/gixy/default.nix
··· 21 python.pkgs.buildPythonApplication rec { 22 pname = "gixy"; 23 version = "0.1.20"; 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 ];