1{ lib 2, buildPythonPackage 3, fetchPypi 4, cheetah 5, nose 6}: 7 8buildPythonPackage rec { 9 pname = "TurboCheetah"; 10 version = "1.0"; 11 12 src = fetchPypi { 13 inherit pname version; 14 sha256 = "9e4c7ecb0d061bfb58281363ee1b09337083f013a8b4d0355326a5d8668f450c"; 15 }; 16 17 propagatedBuildInputs = [ cheetah ]; 18 19 checkInputs = [ nose ]; 20 21 meta = { 22 description = "TurboGears plugin to support use of Cheetah templates"; 23 homepage = "http://docs.turbogears.org/TurboCheetah"; 24 license = lib.licenses.mit; 25 }; 26}