about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pycaption/default.nix
blob: a0a0ff76337b196fe1e70c13a296fef64e224640 (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
{ lib, fetchpatch
, buildPythonPackage, fetchPypi, isPy3k
, beautifulsoup4, lxml, cssutils, future, enum34, six
}:

buildPythonPackage rec {
  pname = "pycaption";
  version = "1.0.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0f2hx9ky65c4niws3x5yx59yi8mqqrw9b2cghd220g4hj9yl800h";
  };

  disabled = !isPy3k;

  prePatch = ''
    substituteInPlace setup.py \
      --replace 'beautifulsoup4>=4.2.1,<4.5.0' \
                'beautifulsoup4>=4.2.1,<5'
  '';

  # don't require enum34 on python >= 3.4
  patches = [
    (fetchpatch {
        url = "https://github.com/pbs/pycaption/pull/161.patch";
        sha256 = "0p58awpsqx1qc3x9zfl1gd85h1nk7204lzn4kglsgh1bka0j237j";
    })
  ];

  propagatedBuildInputs = [ beautifulsoup4 lxml cssutils future enum34 six ];

  # Tests not included in pypi (?)
  doCheck = false;

  meta = with lib; {
    description = "Closed caption converter";
    homepage = "https://github.com/pbs/pycaption";
    license = with licenses; [ asl20 ];
  };
}