nixpkgs/pkgs/servers/isso/default.nix

44 lines
783 B
Nix
Raw Normal View History

{ lib, python3Packages, fetchFromGitHub }:
with python3Packages; buildPythonApplication rec {
2018-02-22 18:52:54 +00:00
pname = "isso";
version = "0.12.4";
2018-02-22 18:52:54 +00:00
# no tests on PyPI
src = fetchFromGitHub {
owner = "posativ";
repo = pname;
rev = version;
sha256 = "16wjpz8r74fzjvzhl6by3sjc2g1riz8lh59ccgp14bns1yhsh2yi";
2018-02-22 18:52:54 +00:00
};
2018-11-13 15:52:33 +00:00
propagatedBuildInputs = [
itsdangerous
2018-11-13 15:52:33 +00:00
jinja2
misaka
html5lib
2018-11-13 15:52:33 +00:00
werkzeug
bleach
flask-caching
];
buildInputs = [
cffi
2018-11-13 15:52:33 +00:00
];
2018-02-22 18:52:54 +00:00
checkInputs = [ nose ];
checkPhase = ''
${python.interpreter} setup.py nosetests
'';
meta = with lib; {
2018-02-22 18:52:54 +00:00
description = "A commenting server similar to Disqus";
homepage = "https://posativ.org/isso/";
2018-02-22 18:52:54 +00:00
license = licenses.mit;
maintainers = with maintainers; [ fgaz ];
};
}
2018-11-13 15:52:33 +00:00