Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

python3Packages.yark: init at 1.2.3 #211269

Merged
merged 2 commits into from
Jan 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions pkgs/development/python-modules/yark/default.nix
Original file line number Diff line number Diff line change
@@ -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;
MostAwesomeDude marked this conversation as resolved.
Show resolved Hide resolved

meta = with lib; {
description = "YouTube archiving made simple";
homepage = "https://github.com/Owez/yark";
license = licenses.mit;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@MostAwesomeDude would you like to open a followup PR adding yourself as a maintainer?

};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down