depot/third_party/nixpkgs/pkgs/tools/misc/wlc/default.nix
Default email 3e2acf8aff Project import generated by Copybara.
GitOrigin-RevId: d42cd445dde587e9a993cd9434cb43da07c4c5de
2021-05-20 18:08:51 -05:00

36 lines
657 B
Nix

{ 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 ];
};
}