git-subtree-dir: users/glittershark/emacs.d git-subtree-mainline:2edb963b97git-subtree-split:69ee53bffa
		
			
				
	
	
		
			16 lines
		
	
	
		
			No EOL
		
	
	
		
			445 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			No EOL
		
	
	
		
			445 B
		
	
	
	
		
			Text
		
	
	
	
	
	
# key: pypkg
 | 
						|
# name: pythonPackage
 | 
						|
# condition: t
 | 
						|
# --
 | 
						|
${1:pname} = buildPythonPackage rec {
 | 
						|
           name = "\${pname}-\${version}";
 | 
						|
           pname = "$1";
 | 
						|
           version = "${2:1.0.0}";
 | 
						|
           src = fetchPypi {
 | 
						|
               inherit pname version;
 | 
						|
               sha256 = "0000000000000000000000000000000000000000000000000000";
 | 
						|
           };
 | 
						|
           propagatedBuildInputs = with pythonSelf; [
 | 
						|
               $3
 | 
						|
           ];
 | 
						|
}; |