f5fa5fa4d6
* 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
24 lines
526 B
Nix
24 lines
526 B
Nix
{ stdenv, buildPythonPackage, fetchPypi,
|
|
pytest }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "rfc3986";
|
|
version = "1.0.0";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "2faacfabcc13ed89b061b5f21cbbf330f82400654b317b5907d311c3478ec4c4";
|
|
};
|
|
|
|
buildInputs = [ pytest ];
|
|
checkPhase = ''
|
|
py.test
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://rfc3986.readthedocs.org;
|
|
license = licenses.asl20;
|
|
description = "Validating URI References per RFC 3986";
|
|
};
|
|
}
|