1{
2 lib,
3 buildPythonPackage,
4 isPy27,
5 fetchPypi,
6 setuptools,
7}:
8
9buildPythonPackage rec {
10 pname = "lazr.uri";
11 version = "1.0.6";
12
13 disabled = isPy27; # namespace is broken for python2
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "5026853fcbf6f91d5a6b11ea7860a641fe27b36d4172c731f4aa16b900cf8464";
18 };
19
20 propagatedBuildInputs = [ setuptools ];
21
22 meta = with lib; {
23 description = "Self-contained, easily reusable library for parsing, manipulating";
24 homepage = "https://launchpad.net/lazr.uri";
25 license = licenses.lgpl3;
26 maintainers = [ ];
27 };
28}