about summary refs log tree commit diff
path: root/pkgs/development/python-modules/lazr-uri/default.nix
blob: 604086ebcaf3477b49062b8b563fa351e13161ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib
, buildPythonPackage
, isPy27
, fetchPypi
, setuptools
}:

buildPythonPackage rec {
  pname = "lazr.uri";
  version = "1.0.6";

  disabled = isPy27; # namespace is broken for python2

  src = fetchPypi {
    inherit pname version;
    sha256 = "5026853fcbf6f91d5a6b11ea7860a641fe27b36d4172c731f4aa16b900cf8464";
  };

  propagatedBuildInputs = [ setuptools ];

  meta = with lib; {
    description = "A self-contained, easily reusable library for parsing, manipulating";
    homepage = "https://launchpad.net/lazr.uri";
    license = licenses.lgpl3;
    maintainers = [ ];
  };
}