python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / wlc / default.nix
blob2e76719012e88f53f7d8242357339de6f618ce04
1 { lib
2 , python3
3 }:
5 with python3.pkgs;
7 buildPythonPackage rec {
8   pname = "wlc";
9   version = "1.13";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "sha256-MZ6avuMNT5HIIXW7ezukAJeO70o+SrgJnBnGjNy4tYE=";
14   };
16   propagatedBuildInputs = [
17     argcomplete
18     python-dateutil
19     requests
20     pyxdg
21     responses
22     twine
23   ];
25   checkInputs = [
26     pytestCheckHook
27   ];
29   meta = with lib; {
30     description = "wlc is a Weblate commandline client using Weblate's REST API.";
31     homepage = "https://github.com/WeblateOrg/wlc";
32     license = licenses.gpl3Plus;
33     maintainers = with maintainers; [ paperdigits ];
34   };