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`.
		
			
				
	
	
		
			26 lines
		
	
	
		
			820 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			820 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, fetchurl, cmake, pyside, qt4, pysideShiboken, buildPythonPackage }:
 | 
						|
 | 
						|
# This derivation provides a Python module and should therefore be called via `python-packages.nix`.
 | 
						|
buildPythonPackage rec {
 | 
						|
  pname = "pyside-tools";
 | 
						|
  version = "0.2.15";
 | 
						|
  format = "other";
 | 
						|
 | 
						|
  src = fetchurl {
 | 
						|
    url = "https://github.com/PySide/Tools/archive/0.2.15.tar.gz";
 | 
						|
    sha256 = "0x4z3aq7jgar74gxzwznl3agla9i1dcskw5gh11jnnwwn63ffzwa";
 | 
						|
  };
 | 
						|
 | 
						|
  enableParallelBuilding = true;
 | 
						|
 | 
						|
  buildInputs = [ cmake pyside qt4 pysideShiboken ];
 | 
						|
 | 
						|
  meta = {
 | 
						|
    description = "Tools for pyside, the LGPL-licensed Python bindings for the Qt cross-platform application and UI framework";
 | 
						|
    license = lib.licenses.gpl2;
 | 
						|
    homepage = http://www.pyside.org;
 | 
						|
    maintainers = [ lib.maintainers.chaoflow ];
 | 
						|
    platforms = lib.platforms.all;
 | 
						|
  };
 | 
						|
}
 |