Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / uritools / default.nix
blob2f4710eea46b539657e13f6330c01fddc4ae7e5f
1 { lib, buildPythonPackage, fetchPypi, isPy27 }:
3 buildPythonPackage rec {
4   pname = "uritools";
5   version = "3.0.0";
6   disabled = isPy27;
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "405917a31ce58a57c8ccd0e4ea290f38baf2f4823819c3688f5331f1aee4ccb0";
11   };
13   meta = with lib; {
14     description = "RFC 3986 compliant, Unicode-aware, scheme-agnostic replacement for urlparse";
15     license = licenses.mit;
16     maintainers = [ maintainers.rvolosatovs ];
17   };