Unverified Commit 7fc7433d authored by Ryan Lahfa's avatar Ryan Lahfa Committed by GitHub
Browse files

Merge pull request #232466 from figsoda/conda

python310Packages.conda: disable on python 3.10+
parents 83249f41 1d2e6b87
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
{ 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;
  };

}