summary refs log tree commit diff
path: root/pkgs/development/python-modules/subliminal/default.nix
blob: 61d406edafc7389a6fbbe3533fcb2e06e437e617 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{ lib
, fetchPypi
, buildPythonPackage
, isPy3k
, guessit
, babelfish
, enzyme
, beautifulsoup4
, requests
, click
, dogpile_cache
, stevedore
, chardet
, pysrt
, six
, appdirs
, rarfile
, pytz
, futures
, sympy
, vcrpy
, pytest
, pytestpep8
, pytest-flakes
, pytestcov
, pytestrunner
}:

buildPythonPackage rec {
  pname = "subliminal";
  version = "2.0.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1dzv5csjcwgz69aimarx2c6606ckm2gbn4x2mzydcqnyai7sayhl";
  };

  propagatedBuildInputs = [
    guessit babelfish enzyme beautifulsoup4 requests
    click dogpile_cache stevedore chardet pysrt six
    appdirs rarfile pytz
  ] ++ lib.optional (!isPy3k) futures;

  checkInputs = [
    sympy vcrpy pytest pytestpep8 pytest-flakes
    pytestcov pytestrunner
  ];

  # https://github.com/Diaoul/subliminal/pull/963
  doCheck = false;

  meta = with lib; {
    homepage = https://github.com/Diaoul/subliminal;
    description = "Python library to search and download subtitles";
    license = licenses.mit;
  };
}