summary refs log tree commit diff
path: root/pkgs/development/python-modules/pafy/default.nix
blob: efb4e0685ab512967ad31d9f5bc4f60808c2175f (plain) (blame)
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, youtube-dl, fetchPypi }:
buildPythonPackage rec {
  pname = "pafy";
  version = "0.5.4";

  src = fetchPypi {
    inherit pname version;
    sha256 = "e842dc589a339a870b5869cc3802f2e95824edf347f65128223cd5ebdff21024";
  };

  # No tests included in archive
  doCheck = false;

  propagatedBuildInputs = [ youtube-dl ];

  meta = with lib; {
    description = "A library to download YouTube content and retrieve metadata";
    homepage = https://github.com/mps-youtube/pafy;
    license = licenses.lgpl3Plus;
    maintainers = with maintainers; [ odi ];
  };
}