blob: d4e326bb40ef3cbf42ad23e1938a43d51154cc59 (
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
25
26
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "uritools";
version = "5.0.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-aBgMrRVAYr1bXZ/83UZPjeaTRBSyVGKugHsAuN+TRd4=";
};
pythonImportsCheck = [ "uritools" ];
meta = {
description = "RFC 3986 compliant, Unicode-aware, scheme-agnostic replacement for urlparse";
homepage = "https://github.com/tkem/uritools/";
changelog = "https://github.com/tkem/uritools/blob/v${version}/CHANGELOG.rst";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ rvolosatovs ];
};
}
|