addic7ed-cli: init at 1.4.5

This commit is contained in:
Eugene
2019-05-01 22:33:57 +03:00
parent fea949f523
commit 396a5d6d99
2 changed files with 26 additions and 0 deletions

View File

@@ -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;
};
}