mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
29 lines
553 B
Nix
29 lines
553 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, Babel
|
|
, pytz
|
|
, nine
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "kajiki";
|
|
version = "0.8.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "c7a1f033b5cfaafa97bda5a475f58a7abcd76b348494995428fdcf6c8f648ad9";
|
|
};
|
|
|
|
propagatedBuildInputs = [ Babel pytz nine ];
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
meta = with lib; {
|
|
description = "Kajiki provides fast well-formed XML templates";
|
|
homepage = "https://github.com/nandoflorestan/kajiki";
|
|
license = licenses.mit;
|
|
};
|
|
|
|
}
|