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`.
		
			
				
	
	
		
			34 lines
		
	
	
		
			882 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			882 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ stdenv, buildPythonPackage, fetchPypi
 | 
						|
, pytest, django, setuptools_scm
 | 
						|
, fetchpatch
 | 
						|
}:
 | 
						|
buildPythonPackage rec {
 | 
						|
  pname = "pytest-django";
 | 
						|
  version = "3.1.2";
 | 
						|
 | 
						|
  src = fetchPypi {
 | 
						|
    inherit pname version;
 | 
						|
    sha256 = "02932m2sr8x22m4az8syr8g835g4ak77varrnw71n6xakmdcr303";
 | 
						|
  };
 | 
						|
 | 
						|
  buildInputs = [ pytest setuptools_scm ];
 | 
						|
  propagatedBuildInputs = [ django ];
 | 
						|
 | 
						|
  patches = [
 | 
						|
    # Unpin setuptools-scm
 | 
						|
    (fetchpatch {
 | 
						|
      url = "https://github.com/pytest-dev/pytest-django/commit/25cbc3b395dcdeb92bdc9414e296680c2b9d602e.patch";
 | 
						|
      sha256 = "0mz3rcsv44pfzlxy3pv8mx87glmv34gy0d5aknvbzgb2a9niryws";
 | 
						|
    })
 | 
						|
  ];
 | 
						|
 | 
						|
  # Complicated. Requires Django setup.
 | 
						|
  doCheck = false;
 | 
						|
 | 
						|
  meta = with stdenv.lib; {
 | 
						|
    description = "py.test plugin for testing of Django applications";
 | 
						|
    homepage = http://pytest-django.readthedocs.org/en/latest/;
 | 
						|
    license = licenses.bsd3;
 | 
						|
  };
 | 
						|
}
 |