yark: init at 1.2.3
By request, in #209237, but also it's been on my plate for about a week to investigate. I have tested that the main executable runs, but I haven't tried out any subcommands yet.
This commit is contained in:
parent
5d9415ec71
commit
1d84dbf082
2 changed files with 26 additions and 0 deletions
24
pkgs/development/python-modules/yark/default.nix
Normal file
24
pkgs/development/python-modules/yark/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ lib, buildPythonPackage, fetchPypi,
|
||||
click, colorama, flask, requests, yt-dlp }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "yark";
|
||||
version = "1.2.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-KMnQpEH2Z19Y0jBjqx2rZjmlle2M9bcuDCjDIljQEYY=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
click colorama flask requests yt-dlp
|
||||
];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "YouTube archiving made simple";
|
||||
homepage = "https://github.com/Owez/yark";
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
|
@ -12392,6 +12392,8 @@ self: super: with self; {
|
|||
|
||||
yarg = callPackage ../development/python-modules/yarg { };
|
||||
|
||||
yark = callPackage ../development/python-modules/yark { };
|
||||
|
||||
yarl = callPackage ../development/python-modules/yarl { };
|
||||
|
||||
yaspin = callPackage ../development/python-modules/yaspin { };
|
||||
|
|
Loading…
Reference in a new issue