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

59 lines
1.2 KiB
Nix
Raw Normal View History

2017-05-17 06:19:16 +00:00
{ lib
, buildPythonPackage
, isPy3k
, fetchPypi
, doit
, glibcLocales
, pytest
, pytestcov
, mock
2017-05-17 06:19:16 +00:00
, pygments
, pillow
, dateutil
, docutils
, Mako
, unidecode
, lxml
, Yapsy
, PyRSS2Gen
, Logbook
, blinker
, setuptools
, natsort
, requests
, piexif
, markdown
, phpserialize
, jinja2
}:
buildPythonPackage rec {
pname = "Nikola";
2018-05-09 14:44:54 +00:00
version = "7.8.15";
2017-05-17 06:19:16 +00:00
# Nix contains only Python 3 supported version of doit, which is a dependency
# of Nikola. Python 2 support would require older doit 0.29.0 (which on the
# other hand doesn't support Python 3.3). So, just disable Python 2.
disabled = !isPy3k;
checkInputs = [ pytest pytestcov mock glibcLocales ];
2017-05-17 06:19:16 +00:00
propagatedBuildInputs = [
pygments pillow dateutil docutils Mako unidecode lxml Yapsy PyRSS2Gen
Logbook blinker setuptools natsort requests piexif markdown phpserialize
jinja2 doit
];
src = fetchPypi {
inherit pname version;
2018-05-09 14:44:54 +00:00
sha256 = "182b4b9254f0d710603ba491853429ad6ef3f955f3e718191336b44cfd649000";
2017-05-17 06:19:16 +00:00
};
meta = {
homepage = https://getnikola.com/;
2017-05-17 06:19:16 +00:00
description = "A modular, fast, simple, static website and blog generator";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jluttine ];
};
}