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`.
		
			
				
	
	
		
			27 lines
		
	
	
		
			629 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			629 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, fetchPypi, buildPythonPackage, docopt, pythonOlder }:
 | 
						|
 | 
						|
buildPythonPackage rec {
 | 
						|
  pname = "httpserver";
 | 
						|
  version = "1.1.0";
 | 
						|
 | 
						|
  buildInputs = [ docopt ];
 | 
						|
 | 
						|
  # Tests pull in lots of other dependencies to emulate different web
 | 
						|
  # drivers.
 | 
						|
  doCheck = false;
 | 
						|
 | 
						|
  # Because it uses asyncio
 | 
						|
  disabled = pythonOlder "3.4";
 | 
						|
 | 
						|
  src = fetchPypi {
 | 
						|
    inherit pname version;
 | 
						|
    sha256 = "1q62g324dvb0hqdwwrnj41sqr4d3ly78v9nc26rz1whj4pwdmhsv";
 | 
						|
  };
 | 
						|
 | 
						|
  meta = {
 | 
						|
    description = "Asyncio implementation of an HTTP server";
 | 
						|
    homepage = https://github.com/thomwiggers/httpserver;
 | 
						|
    license = with lib.licenses; [ bsd3 ];
 | 
						|
  };
 | 
						|
}
 |