mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
python310Packages.conda: disable on python 3.10+
This commit is contained in:
parent
4376e41af0
commit
1d2e6b872c
@ -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;
|
||||
};
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user