1{ lib
2, python3Packages
3}:
4
5python3Packages.buildPythonApplication rec {
6 pname = "addic7ed-cli";
7 version = "1.4.6";
8
9 src = python3Packages.fetchPypi {
10 inherit pname version;
11 sha256 = "182cpwxpdybsgl1nps850ysvvjbqlnx149kri4hxhgm58nqq0qf5";
12 };
13
14 propagatedBuildInputs = with python3Packages; [
15 requests
16 pyquery
17 ];
18
19 # Tests require network access
20 doCheck = false;
21 pythonImportsCheck = [ "addic7ed_cli" ];
22
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 };
30}