Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.03 31 lines 619 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.0"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "2dcd3f2acaf6c1a864f903f084ddd6a6b753f3107ae864355d7c8c1e9cb205b2"; 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}