1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 setuptools-scm,
6 pytubefix,
7 requests,
8 devgoldyutils,
9}:
10
11buildPythonPackage rec {
12 pname = "mov-cli-test";
13 version = "1.1.7";
14 format = "pyproject";
15
16 src = fetchFromGitHub {
17 owner = "mov-cli";
18 repo = "mov-cli-test";
19 rev = "refs/tags/${version}";
20 hash = "sha256-INdPAJxPxfo5bKg4Xn1r7bildxznXrTJxmDI21wylnI=";
21 };
22
23 doCheck = false;
24
25 propagatedBuildInputs = [
26 pytubefix
27 requests
28 devgoldyutils
29 ];
30
31 nativeBuildInputs = [ setuptools-scm ];
32
33 meta = {
34 description = "Mov-cli plugin that let's you test mov-cli's capabilities by watching free films and animations in the creative commons";
35 homepage = "https://github.com/mov-cli/mov-cli-test";
36 license = lib.licenses.mit;
37 maintainers = with lib.maintainers; [ youhaveme9 ];
38 };
39}