2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, idna, pytestCheckHook }:
|
2017-05-12 23:11:48 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "rfc3986";
|
2020-05-09 22:03:02 +01:00
|
|
|
version = "1.4.0";
|
2017-05-12 23:11:48 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-05-09 22:03:02 +01:00
|
|
|
sha256 = "17dvx15m3r49bmif5zlli8kzjd6bys6psixzbp14sd5367d9h8qi";
|
2017-05-12 23:11:48 +01:00
|
|
|
};
|
|
|
|
|
2021-01-05 23:15:27 +00:00
|
|
|
propagatedBuildInputs = [ idna ];
|
|
|
|
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
2017-05-12 23:11:48 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2021-01-05 23:15:27 +00:00
|
|
|
description = "Validating URI References per RFC 3986";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://rfc3986.readthedocs.org";
|
2017-05-12 23:11:48 +01:00
|
|
|
license = licenses.asl20;
|
2021-01-05 23:15:27 +00:00
|
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
2017-05-12 23:11:48 +01:00
|
|
|
};
|
|
|
|
}
|