Merge pull request #62312 from vanschelven/rfc3987

pythonPackages.rfc3987: init at 1.3.8
This commit is contained in:
worldofpeace 2019-06-05 18:42:57 -04:00 committed by GitHub
commit 75fba4a183
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "rfc3987";
version = "1.3.8";
src = fetchPypi {
inherit pname version;
sha256 = "d3c4d257a560d544e9826b38bc81db676890c79ab9d7ac92b39c7a253d5ca733";
};
doCheck = false;
meta = with stdenv.lib; {
homepage = "https://pypi.python.org/pypi/rfc3987";
license = licenses.gpl3Plus;
description = "Parsing and validation of URIs (RFC 3986) and IRIs (RFC 3987)";
maintainers = with maintainers; [ vanschelven ];
};
}

View File

@ -2753,6 +2753,8 @@ in {
pyRFC3339 = callPackage ../development/python-modules/pyrfc3339 { }; pyRFC3339 = callPackage ../development/python-modules/pyrfc3339 { };
rfc3987 = callPackage ../development/python-modules/rfc3987 { };
ConfigArgParse = callPackage ../development/python-modules/configargparse { }; ConfigArgParse = callPackage ../development/python-modules/configargparse { };
jsonschema = callPackage ../development/python-modules/jsonschema { }; jsonschema = callPackage ../development/python-modules/jsonschema { };