blob: fe50586b3bccbbfab9bf74e914a560554ab60557 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "rfc3987";
version = "1.3.8";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "d3c4d257a560d544e9826b38bc81db676890c79ab9d7ac92b39c7a253d5ca733";
};
doCheck = false;
meta = {
homepage = "https://pypi.python.org/pypi/rfc3987";
license = lib.licenses.gpl3Plus;
description = "Parsing and validation of URIs (RFC 3986) and IRIs (RFC 3987)";
maintainers = with lib.maintainers; [ vanschelven ];
};
}
|