about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2019-05-02 18:41:38 +0200
committerGitHub <noreply@github.com>2019-05-02 18:41:38 +0200
commit698d4a21c266b001853752d232fbf5f1c1c0ad6f (patch)
treea13eea11fe681437211eb22268f93b8d1a61b9b1 /pkgs/development
parentbcd07bbf74a38b064b16a4f5faa95d846260656a (diff)
parent396a5d6d99e9829270afe5651a169b1a18f2b207 (diff)
Merge pull request #60667 from aethelz/addic7ed
 addic7ed-cli: init at 1.4.5 
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/addic7ed-cli/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/addic7ed-cli/default.nix b/pkgs/development/python-modules/addic7ed-cli/default.nix
new file mode 100644
index 0000000000000..a9720f45ef6f9
--- /dev/null
+++ b/pkgs/development/python-modules/addic7ed-cli/default.nix
@@ -0,0 +1,24 @@
+{ lib, python3Packages, }:
+
+python3Packages.buildPythonApplication rec {
+  pname = "addic7ed-cli";
+  version = "1.4.5";
+
+  src = python3Packages.fetchPypi {
+    inherit pname version;
+    sha256 = "16nmyw7j2igx5dxflwiwblf421g69rxb879n1553wv6hxi4x27in";
+  };
+
+  propagatedBuildInputs = with python3Packages; [
+    requests
+    pyquery
+  ];
+
+  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;
+  };
+}