nixpkgs/pkgs/development/python-modules/lazr-uri/default.nix

28 lines
605 B
Nix
Raw Normal View History

2020-02-22 09:20:00 +00:00
{ lib
, buildPythonPackage
, isPy27
, fetchPypi
, setuptools
}:
buildPythonPackage rec {
pname = "lazr.uri";
2020-07-31 08:56:41 +00:00
version = "1.0.5";
2020-02-22 09:20:00 +00:00
disabled = isPy27; # namespace is broken for python2
src = fetchPypi {
inherit pname version;
2020-07-31 08:56:41 +00:00
sha256 = "f36e7e40d5f8f2cf20ff2c81784a14a546e6c19c216d40a6617ebe0c96c92c49";
2020-02-22 09:20:00 +00:00
};
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 = [ maintainers.marsam ];
};
}