nixpkgs/pkgs/development/python-modules/uritools/default.nix

19 lines
483 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, isPy27 }:
2017-06-11 14:01:37 +02:00
buildPythonPackage rec {
pname = "uritools";
2019-12-19 20:31:25 +01:00
version = "3.0.0";
disabled = isPy27;
2017-06-11 14:01:37 +02:00
src = fetchPypi {
inherit pname version;
2019-12-19 20:31:25 +01:00
sha256 = "405917a31ce58a57c8ccd0e4ea290f38baf2f4823819c3688f5331f1aee4ccb0";
2017-06-11 14:01:37 +02:00
};
meta = with stdenv.lib; {
description = "RFC 3986 compliant, Unicode-aware, scheme-agnostic replacement for urlparse";
license = licenses.mit;
maintainers = [ maintainers.rvolosatovs ];
};
}