Merge pull request #211269 from MostAwesomeDude/yark-init
python3Packages.yark: init at 1.2.3
This commit is contained in:
commit
886249ddab
26
pkgs/development/python-modules/yark/default.nix
Normal file
26
pkgs/development/python-modules/yark/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ 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
|
||||
];
|
||||
|
||||
# There aren't any unit tests. If test discovery runs, it will crash, halting the build.
|
||||
# When upstream adds unit tests, please configure them here. Thanks! ~ C.
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "YouTube archiving made simple";
|
||||
homepage = "https://github.com/Owez/yark";
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
@ -12411,6 +12411,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 New Issue
Block a user