summary refs log tree commit diff
path: root/pkgs/development/python-modules/rfc3986/default.nix
blob: 561bda08d0cd1723d30f5a9afc0cbbceb930223a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, stdenv, buildPythonPackage, fetchPypi, idna, pytestCheckHook }:

buildPythonPackage rec {
  pname = "rfc3986";
  version = "1.4.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "17dvx15m3r49bmif5zlli8kzjd6bys6psixzbp14sd5367d9h8qi";
  };

  propagatedBuildInputs = [ idna ];

  checkInputs = [ pytestCheckHook ];

  meta = with lib; {
    description = "Validating URI References per RFC 3986";
    homepage = "https://rfc3986.readthedocs.org";
    license = licenses.asl20;
    maintainers = with maintainers; [ SuperSandro2000 ];
  };
}