summary refs log tree commit diff
path: root/pkgs/development/python-modules/rfc3986/default.nix
blob: a8848fcac33816ca5f55eb46d6f6c9c74dab9984 (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
24
{ stdenv, buildPythonPackage, fetchPypi,
  pytest }:

buildPythonPackage rec {
  pname = "rfc3986";
  version = "1.0.0";
  name = "${pname}-${version}";

  src = fetchPypi {
    inherit pname version;
    sha256 = "2faacfabcc13ed89b061b5f21cbbf330f82400654b317b5907d311c3478ec4c4";
  };

  buildInputs = [ pytest ];
  checkPhase = ''
    py.test
  '';

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