Files
nixpkgs/pkgs/development/python-modules/lazr-uri/default.nix
T
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

29 lines
591 B
Nix

{
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 = "Self-contained, easily reusable library for parsing, manipulating";
homepage = "https://launchpad.net/lazr.uri";
license = licenses.lgpl3;
maintainers = [ ];
};
}