depot/third_party/nixpkgs/pkgs/development/python-modules/yark/default.nix
Default email 0d9fc34957 Project import generated by Copybara.
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
2023-01-20 11:41:00 +01:00

26 lines
687 B
Nix

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