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

32 lines
617 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
requests,
isPy27,
}:
buildPythonPackage rec {
pname = "update-checker";
version = "0.18.0";
format = "setuptools";
disabled = isPy27;
src = fetchPypi {
pname = "update_checker";
inherit version;
sha256 = "6a2d45bb4ac585884a6b03f9eade9161cedd9e8111545141e9aa9058932acb13";
};
propagatedBuildInputs = [ requests ];
# requires network
doCheck = false;
meta = with lib; {
description = "Python module that will check for package updates";
homepage = "https://github.com/bboe/update_checker";
license = licenses.bsd2;
};
}