mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
wlc: init at 1.11
This commit is contained in:
parent
259e3fc46f
commit
b34ab9683c
36
pkgs/tools/misc/wlc/default.nix
Normal file
36
pkgs/tools/misc/wlc/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user