Merge pull request #232466 from figsoda/conda

python310Packages.conda: disable on python 3.10+

authored by

Ryan Lahfa and committed by
GitHub
7fc7433d 83249f41

+4 -1
+4 -1
pkgs/development/python-modules/conda/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 + , pythonAtLeast 3 4 , fetchPypi 4 5 , pycosat 5 6 , requests ··· 15 16 pname = "conda"; 16 17 version = "4.3.16"; 17 18 19 + # this is a very outdated version of conda that isn't compatible with python 3.10+ 20 + disabled = pythonAtLeast "3.10"; 21 + 18 22 src = fetchPypi { 19 23 inherit pname version; 20 24 sha256 = "a91ef821343dea3ba9670f3d10b36c1ace4f4c36d70c175d8fc8886e94285953"; ··· 30 34 homepage = "https://github.com/conda/conda"; 31 35 license = lib.licenses.bsd3; 32 36 }; 33 - 34 37 }