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

19 lines
473 B
Nix
Raw Normal View History

{ lib, buildPythonPackage, fetchPypi, isPy27 }:
2017-06-11 13:01:37 +01:00
buildPythonPackage rec {
pname = "uritools";
version = "3.0.2";
disabled = isPy27;
2017-06-11 13:01:37 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "28ffef82ce3b2793237d36e45aa7cde28dae6502f6a93fdbd05ede401520e279";
2017-06-11 13:01:37 +01:00
};
meta = with lib; {
2017-06-11 13:01:37 +01:00
description = "RFC 3986 compliant, Unicode-aware, scheme-agnostic replacement for urlparse";
license = licenses.mit;
maintainers = [ maintainers.rvolosatovs ];
};
}