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