about summary refs log tree commit diff
path: root/pkgs/tools/misc/addic7ed-cli
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/addic7ed-cli')
-rw-r--r--pkgs/tools/misc/addic7ed-cli/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/tools/misc/addic7ed-cli/default.nix b/pkgs/tools/misc/addic7ed-cli/default.nix
new file mode 100644
index 0000000000000..3ee3a897a906a
--- /dev/null
+++ b/pkgs/tools/misc/addic7ed-cli/default.nix
@@ -0,0 +1,30 @@
+{ lib
+, python3Packages
+}:
+
+python3Packages.buildPythonApplication rec {
+  pname = "addic7ed-cli";
+  version = "1.4.6";
+
+  src = python3Packages.fetchPypi {
+    inherit pname version;
+    sha256 = "182cpwxpdybsgl1nps850ysvvjbqlnx149kri4hxhgm58nqq0qf5";
+  };
+
+  propagatedBuildInputs = with python3Packages; [
+    requests
+    pyquery
+  ];
+
+  # Tests require network access
+  doCheck = false;
+  pythonImportsCheck = [ "addic7ed_cli" ];
+
+  meta = with lib; {
+    description = "A commandline access to addic7ed subtitles";
+    homepage = "https://github.com/BenoitZugmeyer/addic7ed-cli";
+    license = licenses.mit;
+    maintainers = with maintainers; [ aethelz ];
+    platforms = platforms.unix;
+  };
+}