biliass: init at 1.3.4
This commit is contained in:
parent
b3108f312c
commit
ba5adb55e0
3 changed files with 32 additions and 0 deletions
28
pkgs/development/python-modules/biliass/default.nix
Normal file
28
pkgs/development/python-modules/biliass/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, pythonOlder
|
||||
, protobuf
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "biliass";
|
||||
version = "1.3.4";
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-kktK+6rLwYhkG7LiTBlgBbiIN8apweg4l8pJSTjKQU4=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ protobuf ];
|
||||
|
||||
pythonImportsCheck = [ "biliass" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/yutto-dev/biliass";
|
||||
description = "Convert Bilibili XML/protobuf danmaku to ASS subtitle";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ linsui ];
|
||||
};
|
||||
}
|
|
@ -2660,6 +2660,8 @@ with pkgs;
|
|||
|
||||
bicon = callPackage ../applications/misc/bicon { };
|
||||
|
||||
biliass = with python3.pkgs; toPythonApplication biliass;
|
||||
|
||||
bindfs = callPackage ../tools/filesystems/bindfs { };
|
||||
|
||||
binwalk = with python3Packages; toPythonApplication binwalk;
|
||||
|
|
|
@ -1225,6 +1225,8 @@ in {
|
|||
|
||||
bids-validator = callPackage ../development/python-modules/bids-validator { };
|
||||
|
||||
biliass = callPackage ../development/python-modules/biliass { };
|
||||
|
||||
billiard = callPackage ../development/python-modules/billiard { };
|
||||
|
||||
bimmer-connected = callPackage ../development/python-modules/bimmer-connected { };
|
||||
|
|
Loading…
Reference in a new issue