python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / addic7ed-cli / default.nix
blob3ee3a897a906a602021e34124ecb47a96ce3bdf2
1 { lib
2 , python3Packages
3 }:
5 python3Packages.buildPythonApplication rec {
6   pname = "addic7ed-cli";
7   version = "1.4.6";
9   src = python3Packages.fetchPypi {
10     inherit pname version;
11     sha256 = "182cpwxpdybsgl1nps850ysvvjbqlnx149kri4hxhgm58nqq0qf5";
12   };
14   propagatedBuildInputs = with python3Packages; [
15     requests
16     pyquery
17   ];
19   # Tests require network access
20   doCheck = false;
21   pythonImportsCheck = [ "addic7ed_cli" ];
23   meta = with lib; {
24     description = "A commandline access to addic7ed subtitles";
25     homepage = "https://github.com/BenoitZugmeyer/addic7ed-cli";
26     license = licenses.mit;
27     maintainers = with maintainers; [ aethelz ];
28     platforms = platforms.unix;
29   };