wlc: init at 1.11

This commit is contained in:
Mica Semrick 2021-05-18 19:42:40 -07:00 committed by Jonathan Ringer
parent 259e3fc46f
commit b34ab9683c
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ lib
, python3
}:
with python3.pkgs;
buildPythonPackage rec {
pname = "wlc";
version = "1.11";
src = fetchPypi {
inherit pname version;
sha256 = "sha256:0ysx250v2qycy1m3jj0wxmyf2f5n8fxf6br69vcbyq2cnqw609nx";
};
propagatedBuildInputs = [
argcomplete
python-dateutil
requests
pyxdg
pre-commit
responses
twine
];
checkInputs = [
pytestCheckHook
];
meta = with lib; {
description = "wlc is a Weblate commandline client using Weblate's REST API.";
homepage = "https://github.com/WeblateOrg/wlc";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ paperdigits ];
};
}

View file

@ -27117,6 +27117,8 @@ in
write_stylus = libsForQt5.callPackage ../applications/graphics/write_stylus { };
wlc = callPackage ../tools/misc/wlc { };
wllvm = callPackage ../development/tools/wllvm { };
wmname = callPackage ../applications/misc/wmname { };