The `buildPython*` function computes name from `pname` and `version`. This change removes `name` attribute from all expressions in `pkgs/development/python-modules`. While at it, some other minor changes were made as well, such as replacing `fetchurl` calls with `fetchPypi`.
		
			
				
	
	
		
			28 lines
		
	
	
		
			676 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			676 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, fetchPypi, isPy3k, buildPythonPackage, numpy, root, nose }:
 | 
						|
 | 
						|
buildPythonPackage rec {
 | 
						|
  pname = "root_numpy";
 | 
						|
  version = "4.7.3";
 | 
						|
 | 
						|
  src = fetchPypi {
 | 
						|
    inherit pname version;
 | 
						|
    sha256 = "0vy6mqmkddfv46yc4hp43fvaisn3yw92ryaw031k841hhj73q0xg";
 | 
						|
  };
 | 
						|
 | 
						|
  disabled = isPy3k; # blocked by #27649
 | 
						|
  checkInputs = [ nose ];
 | 
						|
  checkPhase = ''
 | 
						|
    python setup.py install_lib -d .
 | 
						|
    nosetests -s -v root_numpy
 | 
						|
  '';
 | 
						|
 | 
						|
  propagatedBuildInputs = [ numpy root ];
 | 
						|
 | 
						|
  meta = with lib; {
 | 
						|
    homepage = http://scikit-hep.org/root_numpy;
 | 
						|
    license = licenses.bsd3;
 | 
						|
    description = "The interface between ROOT and NumPy";
 | 
						|
    maintainers = with maintainers; [ veprbl ];
 | 
						|
  };
 | 
						|
}
 |