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`.
		
			
				
	
	
		
			35 lines
		
	
	
		
			663 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			663 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib
 | 
						|
, buildPythonPackage
 | 
						|
, fetchFromGitHub
 | 
						|
, nose
 | 
						|
, django
 | 
						|
, tornado
 | 
						|
, six
 | 
						|
, pytest
 | 
						|
}:
 | 
						|
 | 
						|
buildPythonPackage rec {
 | 
						|
  pname = "livereload";
 | 
						|
  version = "2.5.1";
 | 
						|
 | 
						|
  src = fetchFromGitHub {
 | 
						|
    owner = "lepture";
 | 
						|
    repo = "python-livereload";
 | 
						|
    rev = "v${version}";
 | 
						|
    sha256 = "1irs59wqmffp8q4l9fh7givs05mamlgm5n7ga49gwxp5imwrdzba";
 | 
						|
  };
 | 
						|
 | 
						|
  buildInputs = [ nose django ];
 | 
						|
 | 
						|
  propagatedBuildInputs = [ tornado six ];
 | 
						|
 | 
						|
  checkInputs = [ pytest ];
 | 
						|
  checkPhase = "pytest tests";
 | 
						|
 | 
						|
  meta = {
 | 
						|
    description = "Runs a local server that reloads as you develop";
 | 
						|
    homepage = "https://github.com/lepture/python-livereload";
 | 
						|
    license = lib.licenses.bsd3;
 | 
						|
  };
 | 
						|
}
 |