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`.
		
			
				
	
	
		
			31 lines
		
	
	
		
			807 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			807 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ stdenv, lib, buildPythonPackage, fetchPypi, isPyPy, libgit2, six, cffi }:
 | 
						|
 | 
						|
buildPythonPackage rec {
 | 
						|
  pname = "pygit2";
 | 
						|
  version = "0.26.4";
 | 
						|
 | 
						|
  src = fetchPypi {
 | 
						|
    inherit pname version;
 | 
						|
    sha256 = "a8a0ecce4aadac2675afa5bcda0f698bfe39ec61ac1e15b9264704d1b41bb390";
 | 
						|
  };
 | 
						|
 | 
						|
  preConfigure = lib.optionalString stdenv.isDarwin ''
 | 
						|
    export DYLD_LIBRARY_PATH="${libgit2}/lib"
 | 
						|
  '';
 | 
						|
 | 
						|
  propagatedBuildInputs = [ libgit2 six ] ++ lib.optional (!isPyPy) cffi;
 | 
						|
 | 
						|
  preCheck = ''
 | 
						|
    # disable tests that require networking
 | 
						|
    rm test/test_repository.py
 | 
						|
    rm test/test_credentials.py
 | 
						|
    rm test/test_submodule.py
 | 
						|
  '';
 | 
						|
 | 
						|
  meta = with lib; {
 | 
						|
    description = "A set of Python bindings to the libgit2 shared library";
 | 
						|
    homepage = https://pypi.python.org/pypi/pygit2;
 | 
						|
    license = licenses.gpl2;
 | 
						|
  };
 | 
						|
}
 |