Merge pull request #211269 from MostAwesomeDude/yark-init

python3Packages.yark: init at 1.2.3
This commit is contained in:
Nick Cao 2023-01-20 12:06:13 +08:00 committed by GitHub
commit 886249ddab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

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

View File

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