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`.
		
			
				
	
	
		
			29 lines
		
	
	
		
			593 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			593 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib
 | 
						|
, buildPythonPackage
 | 
						|
, fetchPypi
 | 
						|
, nose
 | 
						|
, glibcLocales
 | 
						|
}:
 | 
						|
 | 
						|
buildPythonPackage rec {
 | 
						|
  pname = "ipython_genutils";
 | 
						|
  version = "0.2.0";
 | 
						|
 | 
						|
  src = fetchPypi {
 | 
						|
    inherit pname version;
 | 
						|
    sha256 = "eb2e116e75ecef9d4d228fdc66af54269afa26ab4463042e33785b887c628ba8";
 | 
						|
  };
 | 
						|
 | 
						|
  checkInputs = [ nose glibcLocales ];
 | 
						|
 | 
						|
  checkPhase = ''
 | 
						|
    LC_ALL="en_US.UTF-8" nosetests -v ipython_genutils/tests
 | 
						|
  '';
 | 
						|
 | 
						|
  meta = {
 | 
						|
    description = "Vestigial utilities from IPython";
 | 
						|
    homepage = http://ipython.org/;
 | 
						|
    license = lib.licenses.bsd3;
 | 
						|
    maintainers = with lib.maintainers; [ fridh ];
 | 
						|
  };
 | 
						|
} |