pythonPackages.Kajiki: refactor move to python-modules
This commit is contained in:
parent
08b3dbea20
commit
aecd6aeb11
26
pkgs/development/python-modules/kajiki/default.nix
Normal file
26
pkgs/development/python-modules/kajiki/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, Babel
|
||||||
|
, pytz
|
||||||
|
, nine
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "Kajiki";
|
||||||
|
version = "0.5.5";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "effcae388e25c3358eb0bbd733448509d11a1ec500e46c69241fc673021f0517";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ Babel pytz nine ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Kajiki provides fast well-formed XML templates";
|
||||||
|
homepage = "https://github.com/nandoflorestan/kajiki";
|
||||||
|
license = licenses.mit;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -3025,23 +3025,7 @@ in {
|
|||||||
|
|
||||||
kaitaistruct = callPackage ../development/python-modules/kaitaistruct { };
|
kaitaistruct = callPackage ../development/python-modules/kaitaistruct { };
|
||||||
|
|
||||||
Kajiki = buildPythonPackage rec {
|
Kajiki = callPackage ../development/python-modules/kajiki { };
|
||||||
name = "Kajiki-${version}";
|
|
||||||
version = "0.5.5";
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "mirror://pypi/K/Kajiki/${name}.tar.gz";
|
|
||||||
sha256 = "effcae388e25c3358eb0bbd733448509d11a1ec500e46c69241fc673021f0517";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self; [
|
|
||||||
Babel pytz nine
|
|
||||||
];
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
description = "Kajiki provides fast well-formed XML templates";
|
|
||||||
homepage = "https://github.com/nandoflorestan/kajiki";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
WSME = callPackage ../development/python-modules/WSME { };
|
WSME = callPackage ../development/python-modules/WSME { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user