depot/third_party/nixpkgs/pkgs/tools/misc/wlc/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

37 lines
665 B
Nix

{ lib
, python3
, fetchPypi
}:
with python3.pkgs;
buildPythonPackage rec {
pname = "wlc";
version = "1.14";
src = fetchPypi {
inherit pname version;
hash = "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";
};
}