mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
755b915a15
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/'
38 lines
667 B
Nix
38 lines
667 B
Nix
{ lib
|
|
, python3
|
|
, fetchPypi
|
|
}:
|
|
|
|
with python3.pkgs;
|
|
|
|
buildPythonPackage rec {
|
|
pname = "wlc";
|
|
version = "1.14";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-QMF41B6a2jMSdhjeFoRQq+K1YJAEz96msHLzX6wVqSc=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
argcomplete
|
|
python-dateutil
|
|
requests
|
|
pyxdg
|
|
responses
|
|
twine
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Weblate commandline client using Weblate's REST API";
|
|
homepage = "https://github.com/WeblateOrg/wlc";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ paperdigits ];
|
|
mainProgram = "wlc";
|
|
};
|
|
}
|