Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 610 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.1.1"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "1c530pb0h34z0ziym256qps21b8mh533ia1lcnx9wqwx9rnqriki"; 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}