1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-15 00:54:46 +00:00
nixpkgs/pkgs/development/python-modules/guessit/default.nix

31 lines
607 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";
version = "3.0.3";
2017-05-01 09:00:03 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "1q06b3k31bfb8cxjimpf1rkcrwnc596a9cppjw15minvdangl32r";
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";
};
}