nixpkgs/pkgs/development/python-modules/kajiki/default.nix
2019-01-03 22:06:46 +01:00

29 lines
541 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, Babel
, pytz
, nine
, nose
}:
buildPythonPackage rec {
pname = "Kajiki";
version = "0.7.2";
src = fetchPypi {
inherit pname version;
sha256 = "4e7aaf838f298958cf171f220e1d0dc4220338c76c97746a46d0cc389f90b10a";
};
propagatedBuildInputs = [ Babel pytz nine ];
checkInputs = [ nose ];
meta = with stdenv.lib; {
description = "Kajiki provides fast well-formed XML templates";
homepage = "https://github.com/nandoflorestan/kajiki";
license = licenses.mit;
};
}