mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
pythonPackages.lektor: init at 2.3
This commit is contained in:
parent
f04b018111
commit
85c6ab9c8a
|
@ -9543,6 +9543,22 @@ in modules // {
|
|||
};
|
||||
};
|
||||
|
||||
exifread = buildPythonPackage rec {
|
||||
name = "ExifRead-2.1.2";
|
||||
|
||||
meta = {
|
||||
description = "Easy to use Python module to extract Exif metadata from tiff and jpeg files";
|
||||
homepage = "https://github.com/ianare/exif-py";
|
||||
license = "BSD";
|
||||
maintainers = with maintainers; [ vozz ];
|
||||
};
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/E/ExifRead/${name}.tar.gz";
|
||||
sha256 = "1b90jf6m9vxh9nanhpyvqdq7hmfx5iggw1l8kq10jrs6xgr49qkr";
|
||||
};
|
||||
};
|
||||
|
||||
fastimport = buildPythonPackage rec {
|
||||
name = "fastimport-${version}";
|
||||
version = "0.9.4";
|
||||
|
@ -11276,6 +11292,21 @@ in modules // {
|
|||
};
|
||||
};
|
||||
|
||||
inifile = buildPythonPackage rec {
|
||||
name = "inifile-0.3";
|
||||
|
||||
meta = {
|
||||
description = "A small INI library for Python";
|
||||
homepage = "https://github.com/mitsuhiko/python-inifile";
|
||||
license = "BSD";
|
||||
maintainers = with maintainers; [ vozz ];
|
||||
};
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/i/inifile/${name}.tar.gz";
|
||||
sha256 = "0zgd53czc1irwx6b5zip8xlmyfr40hz2pd498d8yv61znj6lm16h";
|
||||
};
|
||||
};
|
||||
|
||||
interruptingcow = buildPythonPackage rec {
|
||||
name = "interruptingcow-${version}";
|
||||
|
@ -12011,6 +12042,34 @@ in modules // {
|
|||
};
|
||||
};
|
||||
|
||||
lektor = buildPythonPackage rec {
|
||||
name = "lektor-${version}";
|
||||
|
||||
version = "2.3";
|
||||
|
||||
src = pkgs.fetchgit {
|
||||
url = "https://github.com/lektor/lektor";
|
||||
rev = "refs/tags/${version}";
|
||||
sha256 = "1n0ylh1sbpvi9li3g6a7j7m28njfibn10y6s2gayjxwm6fpphqxy";
|
||||
};
|
||||
|
||||
LC_ALL="en_US.UTF-8";
|
||||
|
||||
meta = {
|
||||
description = "A static content management system";
|
||||
homepage = "https://www.getlektor.com/";
|
||||
license = "BSD";
|
||||
maintainers = with maintainers; [ vozz ];
|
||||
};
|
||||
|
||||
# No tests included in archive
|
||||
doCheck = false;
|
||||
|
||||
propagatedBuildInputs = with self; [
|
||||
click watchdog exifread requests2 mistune inifile Babel jinja2
|
||||
flask pyopenssl ndg-httpsclient pkgs.glibcLocales
|
||||
];
|
||||
};
|
||||
|
||||
libcloud = buildPythonPackage (rec {
|
||||
name = "libcloud-0.18.0";
|
||||
|
@ -28405,4 +28464,5 @@ in modules // {
|
|||
};
|
||||
buildInputs = with self; [ pkgs.swig1 pkgs.coin3d pkgs.soqt pkgs.mesa pkgs.xorg.libXi ];
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue