Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09-beta 27 lines 605 B view raw
1{ lib 2, buildPythonPackage 3, isPy27 4, fetchPypi 5, setuptools 6}: 7 8buildPythonPackage rec { 9 pname = "lazr.uri"; 10 version = "1.0.5"; 11 12 disabled = isPy27; # namespace is broken for python2 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "f36e7e40d5f8f2cf20ff2c81784a14a546e6c19c216d40a6617ebe0c96c92c49"; 17 }; 18 19 propagatedBuildInputs = [ setuptools ]; 20 21 meta = with lib; { 22 description = "A self-contained, easily reusable library for parsing, manipulating"; 23 homepage = "https://launchpad.net/lazr.uri"; 24 license = licenses.lgpl3; 25 maintainers = [ maintainers.marsam ]; 26 }; 27}