Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / by-name / mo / mov-cli / mov-cli-test.nix
blobf135d863c1d576ecf6dd6e38f8ca26043291ea98
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   setuptools-scm,
6   pytubefix,
7   requests,
8   devgoldyutils,
9 }:
11 buildPythonPackage rec {
12   pname = "mov-cli-test";
13   version = "1.1.7";
14   format = "pyproject";
16   src = fetchFromGitHub {
17     owner = "mov-cli";
18     repo = "mov-cli-test";
19     rev = "refs/tags/${version}";
20     hash = "sha256-INdPAJxPxfo5bKg4Xn1r7bildxznXrTJxmDI21wylnI=";
21   };
23   doCheck = false;
25   propagatedBuildInputs = [
26     pytubefix
27     requests
28     devgoldyutils
29   ];
31   nativeBuildInputs = [ setuptools-scm ];
33   meta = {
34     description = "A 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; [ roshaen ];
38   };