ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / youtube-transcript-api / default.nix
blob100aa2eaf06e6527680749e8e2faf15df75528f7
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , requests
5 , mock
6 , httpretty
7 , pytestCheckHook
8 , pythonOlder
9 }:
11 buildPythonPackage rec {
12   pname = "youtube-transcript-api";
13   version = "0.5.0";
14   format = "setuptools";
16   disabled = pythonOlder "3.7";
18   src = fetchFromGitHub {
19     owner = "jdepoix";
20     repo = pname;
21     rev = "refs/tags/v${version}";
22     hash = "sha256-oTKvJt6tyv/ESJ5+Io8M8/KnuW4hN2P7w14sldsKwzw=";
23   };
25   propagatedBuildInputs = [
26     requests
27   ];
29   checkInputs = [
30     mock
31     httpretty
32     pytestCheckHook
33   ];
35   pythonImportsCheck = [
36     "youtube_transcript_api"
37   ];
39   meta = with lib; {
40     description = "Python API which allows you to get the transcripts/subtitles for a given YouTube video";
41     homepage = "https://github.com/jdepoix/youtube-transcript-api";
42     license = licenses.mit;
43     maintainers = [ maintainers.marsam ];
44   };