Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / rfc3986 / default.nix
blob93f2f2ce37d8989a7a2b453f10a70e5e02b5fa31
1 { lib, buildPythonPackage, fetchPypi, idna, pytestCheckHook }:
3 buildPythonPackage rec {
4   pname = "rfc3986";
5   version = "1.4.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "17dvx15m3r49bmif5zlli8kzjd6bys6psixzbp14sd5367d9h8qi";
10   };
12   propagatedBuildInputs = [ idna ];
14   checkInputs = [ pytestCheckHook ];
16   meta = with lib; {
17     description = "Validating URI References per RFC 3986";
18     homepage = "https://rfc3986.readthedocs.org";
19     license = licenses.asl20;
20     maintainers = with maintainers; [ SuperSandro2000 ];
21   };