about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/uritools/default.nix
blob: d90bf39f336039859db652452a451660fa31fd60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, buildPythonPackage, fetchPypi, isPy27 }:

buildPythonPackage rec {
  pname = "uritools";
  version = "3.0.1";
  disabled = isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "a3e9c794d44fdbd54642dcb7d6ef3ba9866d953eb34f65aeca3754b7ad5c1ea0";
  };

  meta = with lib; {
    description = "RFC 3986 compliant, Unicode-aware, scheme-agnostic replacement for urlparse";
    license = licenses.mit;
    maintainers = [ maintainers.rvolosatovs ];
  };
}