mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Merge pull request #60667 from aethelz/addic7ed
addic7ed-cli: init at 1.4.5
This commit is contained in:
commit
698d4a21c2
3 changed files with 31 additions and 0 deletions
|
@ -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";
|
||||
|
|
24
pkgs/development/python-modules/addic7ed-cli/default.nix
Normal file
24
pkgs/development/python-modules/addic7ed-cli/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue