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

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

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

  checkInputs = [ pytest ];
  checkPhase = ''
    pytest
  '';

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