Merge pull request #232466 from figsoda/conda

python310Packages.conda: disable on python 3.10+
This commit is contained in:
Ryan Lahfa 2023-05-17 22:23:01 +02:00 committed by GitHub
commit 7fc7433df2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,6 @@
{ lib
, buildPythonPackage
, pythonAtLeast
, fetchPypi
, pycosat
, requests
@ -15,6 +16,9 @@ buildPythonPackage rec {
pname = "conda";
version = "4.3.16";
# this is a very outdated version of conda that isn't compatible with python 3.10+
disabled = pythonAtLeast "3.10";
src = fetchPypi {
inherit pname version;
sha256 = "a91ef821343dea3ba9670f3d10b36c1ace4f4c36d70c175d8fc8886e94285953";
@ -30,5 +34,4 @@ buildPythonPackage rec {
homepage = "https://github.com/conda/conda";
license = lib.licenses.bsd3;
};
}