nixpkgs/pkgs/development/python-modules/kajiki/default.nix

29 lines
541 B
Nix
Raw Normal View History

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