about summary refs log tree commit diff
path: root/pkgs/by-name/mo/mov-cli/mov-cli-test.nix
blob: f135d863c1d576ecf6dd6e38f8ca26043291ea98 (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  setuptools-scm,
  pytubefix,
  requests,
  devgoldyutils,
}:

buildPythonPackage rec {
  pname = "mov-cli-test";
  version = "1.1.7";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "mov-cli";
    repo = "mov-cli-test";
    rev = "refs/tags/${version}";
    hash = "sha256-INdPAJxPxfo5bKg4Xn1r7bildxznXrTJxmDI21wylnI=";
  };

  doCheck = false;

  propagatedBuildInputs = [
    pytubefix
    requests
    devgoldyutils
  ];

  nativeBuildInputs = [ setuptools-scm ];

  meta = {
    description = "A mov-cli plugin that let's you test mov-cli's capabilities by watching free films and animations in the creative commons";
    homepage = "https://github.com/mov-cli/mov-cli-test";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ roshaen ];
  };
}