python310Packages.Kajiki: 0.9.0 -> 0.9.1
This commit is contained in:
parent
76aa29d2ed
commit
a79c16c397
1 changed files with 8 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, fetchFromGitHub
|
||||
, babel
|
||||
, pytz
|
||||
, nine
|
||||
|
@ -11,18 +11,22 @@ buildPythonPackage rec {
|
|||
pname = "kajiki";
|
||||
version = "0.9.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-Qe/FTQ6YrHiVklP3HFG9HsT7Yny6we2+Ithcj2UFdp4=";
|
||||
src = fetchFromGitHub {
|
||||
owner = "jackrosenthal";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-bdQBVFHRB408/7X9y+3+fpllhymFRsdv/MEPTVjJh2E=";
|
||||
};
|
||||
|
||||
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;
|
||||
maintainers = with maintainers; [ onny ];
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue