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

pythonPackages.fs: build with all Python versions

and add updated explanation of why tests are disabled.
See also https://github.com/NixOS/nixpkgs/pull/13066

+5 -4
+5 -4
pkgs/top-level/python-packages.nix
··· 8960 ${python.interpreter} -m unittest discover 8961 ''; 8962 8963 - # Judging from SyntaxError 8964 - disabled = isPy3k; 8965 - 8966 - # Lots of errors. Likely due to being in a chroot 8967 doCheck = false; 8968 8969 meta = {
··· 8960 ${python.interpreter} -m unittest discover 8961 ''; 8962 8963 + # Because 2to3 is used the tests in $out need to be run. 8964 + # Both when using unittest and pytest this resulted in many errors, 8965 + # some Python byte/str errors, and others specific to resources tested. 8966 + # Failing tests due to the latter is to be expected with this type of package. 8967 + # Tests are therefore disabled. 8968 doCheck = false; 8969 8970 meta = {