* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
		
			
				
	
	
		
			25 lines
		
	
	
		
			668 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			668 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, fetchFromGitHub, buildPythonPackage, cython, slurm }:
 | 
						|
 | 
						|
buildPythonPackage rec {
 | 
						|
  name = "pyslurm";
 | 
						|
 | 
						|
  src = fetchFromGitHub {
 | 
						|
    repo = "pyslurm";
 | 
						|
    owner = "PySlurm";
 | 
						|
    rev = "69e4f4fd66003b98ddb7da25613fe641d4ae160d";
 | 
						|
    sha256 = "051kafkndbniklxyf0drb360aiblnqcf9rqjbvmqh66zrfya1m28";
 | 
						|
  };
 | 
						|
 | 
						|
  patches = [ ./pyslurm-dlfcn.patch ];
 | 
						|
 | 
						|
  buildInputs = [ cython slurm ];
 | 
						|
  setupPyBuildFlags = [ "--slurm-lib=${slurm}/lib" "--slurm-inc=${slurm.dev}/include" ];
 | 
						|
 | 
						|
  meta = with lib; {
 | 
						|
    homepage = https://github.com/PySlurm/pyslurm;
 | 
						|
    description = "Python bindings to Slurm";
 | 
						|
    license = licenses.gpl2;
 | 
						|
    maintainers = [ maintainers.veprbl ];
 | 
						|
  };
 | 
						|
}
 |