pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / development / python-modules / rfc3987 / default.nix
blob25c77a68e95efe452b295512898a38528dfe4b50
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "rfc3987";
9   version = "1.3.8";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "d3c4d257a560d544e9826b38bc81db676890c79ab9d7ac92b39c7a253d5ca733";
15   };
17   doCheck = false;
18   meta = with lib; {
19     homepage = "https://pypi.python.org/pypi/rfc3987";
20     license = licenses.gpl3Plus;
21     description = "Parsing and validation of URIs (RFC 3986) and IRIs (RFC 3987)";
22     maintainers = with maintainers; [ vanschelven ];
23   };