3
0
Fork 0
forked from mirrors/nixpkgs

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

View file

@ -925,6 +925,8 @@ in {
aafigure = callPackage ../development/python-modules/aafigure { };
addic7ed-cli = callPackage ../development/python-modules/addic7ed-cli { };
altair = callPackage ../development/python-modules/altair { };
vega = callPackage ../development/python-modules/vega { };