python.pkgs.conda: init at 4.3.16
This commit is contained in:
		
							parent
							
								
									48f3629551
								
							
						
					
					
						commit
						60ebb14341
					
				
							
								
								
									
										34
									
								
								pkgs/development/python-modules/conda/default.nix
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										34
									
								
								pkgs/development/python-modules/conda/default.nix
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,34 @@
 | 
			
		||||
{ lib
 | 
			
		||||
, buildPythonPackage
 | 
			
		||||
, fetchPypi
 | 
			
		||||
, pycosat
 | 
			
		||||
, requests
 | 
			
		||||
, ruamel_yaml
 | 
			
		||||
, isPy3k
 | 
			
		||||
, enum34
 | 
			
		||||
}:
 | 
			
		||||
 | 
			
		||||
# Note: this installs conda as a library. The application cannot be used.
 | 
			
		||||
# This is likely therefore NOT what you're looking for.
 | 
			
		||||
 | 
			
		||||
buildPythonPackage rec {
 | 
			
		||||
  pname = "conda";
 | 
			
		||||
  version = "4.3.16";
 | 
			
		||||
 | 
			
		||||
  src = fetchPypi {
 | 
			
		||||
    inherit pname version;
 | 
			
		||||
    sha256 = "a91ef821343dea3ba9670f3d10b36c1ace4f4c36d70c175d8fc8886e94285953";
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  propagatedBuildInputs = [ pycosat requests ruamel_yaml ] ++ lib.optional (!isPy3k) enum34;
 | 
			
		||||
 | 
			
		||||
  # No tests
 | 
			
		||||
  doCheck = false;
 | 
			
		||||
 | 
			
		||||
  meta = {
 | 
			
		||||
    description = "OS-agnostic, system-level binary package manager";
 | 
			
		||||
    homepage = https://github.com/conda/conda;
 | 
			
		||||
    license = lib.licenses.bsd3;
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
@ -2842,6 +2842,7 @@ in {
 | 
			
		||||
    };
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  conda = callPackage ../development/python-modules/conda { };
 | 
			
		||||
 | 
			
		||||
  configobj = buildPythonPackage (rec {
 | 
			
		||||
    name = "configobj-5.0.6";
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user