python39Packages.paramz: fix infinite loop on darwin
This commit is contained in:
		
							parent
							
								
									5afb1fed39
								
							
						
					
					
						commit
						aaef07f51a
					
				@ -1,4 +1,4 @@
 | 
			
		||||
{ stdenv, buildPythonPackage, fetchPypi, numpy, scipy, six, decorator }:
 | 
			
		||||
{ stdenv, buildPythonPackage, fetchPypi, numpy, scipy, six, decorator, nose }:
 | 
			
		||||
 | 
			
		||||
buildPythonPackage rec {
 | 
			
		||||
  pname = "paramz";
 | 
			
		||||
@ -10,6 +10,12 @@ buildPythonPackage rec {
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  propagatedBuildInputs = [ numpy scipy six decorator ];
 | 
			
		||||
  checkInputs = [ nose ];
 | 
			
		||||
 | 
			
		||||
  # Ran 113 tests in 3.082s
 | 
			
		||||
  checkPhase = ''
 | 
			
		||||
      nosetests -v paramz/tests
 | 
			
		||||
  '';
 | 
			
		||||
 | 
			
		||||
  meta = with stdenv.lib; {
 | 
			
		||||
    description = "Parameterization framework for parameterized model creation and handling";
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user