* 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
		
			
				
	
	
		
			27 lines
		
	
	
		
			580 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			580 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib
 | 
						|
, stdenv
 | 
						|
, buildPythonPackage
 | 
						|
, fetchPypi
 | 
						|
, requests
 | 
						|
}:
 | 
						|
 | 
						|
buildPythonPackage rec {
 | 
						|
  pname = "browsermob-proxy";
 | 
						|
  version = "0.8.0";
 | 
						|
  name = "${pname}-${version}";
 | 
						|
 | 
						|
  src = fetchPypi {
 | 
						|
    inherit pname version;
 | 
						|
    sha256 = "1bxvmghm834gsfz3pm69772wzhh15p8ci526b25dpk3z4315nd7v";
 | 
						|
  };
 | 
						|
 | 
						|
  propagatedBuildInputs = [ requests ];
 | 
						|
 | 
						|
  meta = {
 | 
						|
    description = "A library for interacting with Browsermob Proxy";
 | 
						|
    homepage = http://oss.theautomatedtester.co.uk/browsermob-proxy-py;
 | 
						|
    license = lib.licenses.asl20;
 | 
						|
    maintainers = with lib.maintainers; [ raskin ];
 | 
						|
  };
 | 
						|
}
 |