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

31 lines
619 B
Nix
Raw Normal View History

2017-05-01 09:00:03 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, pytestrunner
, dateutil
, babelfish
, rebulk
}:
buildPythonPackage rec {
pname = "guessit";
2019-10-16 10:43:07 +01:00
version = "3.0.5";
2017-05-01 09:00:03 +01:00
src = fetchPypi {
inherit pname version;
2019-10-16 10:43:07 +01:00
sha256 = "3559c2f37575b048c3d8723cc7a8eedb83b6c411d1be0d64e8b54f4b90138ca2";
2017-05-01 09:00:03 +01:00
};
# Tests require more packages.
doCheck = false;
buildInputs = [ pytestrunner ];
propagatedBuildInputs = [
dateutil babelfish rebulk
];
meta = {
homepage = https://pypi.python.org/pypi/guessit;
2017-05-01 09:00:03 +01:00
license = lib.licenses.lgpl3;
description = "A library for guessing information from video files";
};
}