aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/youtube-dlc/default.nix
blob: 9599828e65eef2379adcb5a26f1085f89b4e61a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "youtube_dlc";
  version = "2020.11.11.post3";

  src = fetchPypi {
    inherit pname version;
    sha256 = "WqoKpfvVPZrN+pW6s8JoApJusn5CXyPcg9VcsY8R0FM=";
  };

  # They are broken
  doCheck = false;

  pythonImportsCheck = [ "youtube_dlc" ];

  meta = with lib; {
    homepage = "Media downloader supporting various sites such as youtube";
    description = "https://github.com/blackjack4494/yt-dlc";
    platforms = platforms.linux;
    maintainers = with maintainers; [ freezeboy ];
  };
}