nixpkgs/pkgs/development/python-modules/subliminal/default.nix

56 lines
997 B
Nix
Raw Normal View History

{ lib
, fetchPypi
, buildPythonPackage
2017-05-18 10:46:04 +00:00
, guessit
, babelfish
, enzyme
, beautifulsoup4
, requests
, click
, dogpile_cache
, stevedore
, chardet
, pysrt
, six
, appdirs
, rarfile
, pytz
, sympy
, vcrpy
, pytest
, pytest-flakes
, pytest-cov
, pytest-runner
2017-05-18 10:46:04 +00:00
}:
buildPythonPackage rec {
pname = "subliminal";
version = "2.1.0";
2017-05-18 10:46:04 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "12v2clnbic8320fjsvkg3xfxfa7x8inhjk61z00pzwx46g3rqhy6";
2017-05-18 10:46:04 +00:00
};
propagatedBuildInputs = [
guessit babelfish enzyme beautifulsoup4 requests
click dogpile_cache stevedore chardet pysrt six
appdirs rarfile pytz
];
checkInputs = [
sympy vcrpy pytest pytest-flakes
pytest-cov pytest-runner
];
# https://github.com/Diaoul/subliminal/pull/963
2017-05-18 10:46:04 +00:00
doCheck = false;
pythonImportsCheck = [ "subliminal" ];
2017-05-18 10:46:04 +00:00
meta = with lib; {
homepage = "https://github.com/Diaoul/subliminal";
2017-05-18 10:46:04 +00:00
description = "Python library to search and download subtitles";
license = licenses.mit;
};
}