Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 28 lines 541 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, Babel 5, pytz 6, nine 7, nose 8}: 9 10buildPythonPackage rec { 11 pname = "Kajiki"; 12 version = "0.7.2"; 13 14 src = fetchPypi { 15 inherit pname version; 16 sha256 = "4e7aaf838f298958cf171f220e1d0dc4220338c76c97746a46d0cc389f90b10a"; 17 }; 18 19 propagatedBuildInputs = [ Babel pytz nine ]; 20 checkInputs = [ nose ]; 21 22 meta = with stdenv.lib; { 23 description = "Kajiki provides fast well-formed XML templates"; 24 homepage = "https://github.com/nandoflorestan/kajiki"; 25 license = licenses.mit; 26 }; 27 28}