3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #60667 from aethelz/addic7ed

addic7ed-cli: init at 1.4.5
This commit is contained in:
Renaud 2019-05-02 18:41:38 +02:00 committed by GitHub
commit 698d4a21c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 31 additions and 0 deletions

View file

@ -157,6 +157,11 @@
github = "aespinosa";
name = "Allan Espinosa";
};
aethelz = {
email = "aethelz@protonmail.com";
github = "aethelz";
name = "Eugene";
};
aflatter = {
email = "flatter@fastmail.fm";
github = "aflatter";

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