guessit_2_0: init at 2.0.4

This commit is contained in:
Jörg Thalheim 2017-08-27 16:20:43 +01:00 committed by Frederik Rietdijk
parent 9788c3f421
commit 6ba195897c
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytestrunner
, dateutil
, babelfish
, rebulk
}:
buildPythonPackage rec {
pname = "guessit";
version = "2.0.4";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "1cfcgb0px6i9jl8nwkx8j06j4y6p5975a9pfmd8lcacwr8gy4wjg";
};
# Tests require more packages.
doCheck = false;
buildInputs = [ pytestrunner ];
propagatedBuildInputs = [
dateutil babelfish rebulk
];
meta = {
homepage = http://pypi.python.org/pypi/guessit;
license = lib.licenses.lgpl3;
description = "A library for guessing information from video files";
};
}

View File

@ -10549,6 +10549,9 @@ in {
guessit = callPackage ../development/python-modules/guessit { };
# used by flexget
guessit_2_0 = callPackage ../development/python-modules/guessit/2.0.nix { };
rebulk = callPackage ../development/python-modules/rebulk { };
gunicorn = callPackage ../development/python-modules/gunicorn.nix { };