evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / lazr-uri / default.nix
blobf714fa9ccd49f42c473a3fabeab2d891dcf3ca1b
2   lib,
3   buildPythonPackage,
4   isPy27,
5   fetchPypi,
6   setuptools,
7 }:
9 buildPythonPackage rec {
10   pname = "lazr.uri";
11   version = "1.0.6";
13   disabled = isPy27; # namespace is broken for python2
15   src = fetchPypi {
16     inherit pname version;
17     sha256 = "5026853fcbf6f91d5a6b11ea7860a641fe27b36d4172c731f4aa16b900cf8464";
18   };
20   propagatedBuildInputs = [ setuptools ];
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   };