Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 607 B view raw
1{ lib 2, buildPythonPackage 3, fetchPypi 4, pytestrunner 5, dateutil 6, babelfish 7, rebulk 8}: 9 10buildPythonPackage rec { 11 pname = "guessit"; 12 version = "3.0.3"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "1q06b3k31bfb8cxjimpf1rkcrwnc596a9cppjw15minvdangl32r"; 17 }; 18 19 # Tests require more packages. 20 doCheck = false; 21 buildInputs = [ pytestrunner ]; 22 propagatedBuildInputs = [ 23 dateutil babelfish rebulk 24 ]; 25 26 meta = { 27 homepage = https://pypi.python.org/pypi/guessit; 28 license = lib.licenses.lgpl3; 29 description = "A library for guessing information from video files"; 30 }; 31}