2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, python2, fetchFromGitHub }:
|
2018-02-22 18:52:54 +00:00
|
|
|
|
2018-11-13 15:52:33 +00:00
|
|
|
with python2.pkgs; buildPythonApplication rec {
|
2018-02-22 18:52:54 +00:00
|
|
|
pname = "isso";
|
2019-01-28 14:10:07 +00:00
|
|
|
version = "0.12.2";
|
2018-02-22 18:52:54 +00:00
|
|
|
|
|
|
|
# no tests on PyPI
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "posativ";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2019-01-28 14:10:07 +00:00
|
|
|
sha256 = "18v8lzwgl5hcbnawy50lfp3wnlc0rjhrnw9ja9260awkx7jra9ba";
|
2018-02-22 18:52:54 +00:00
|
|
|
};
|
|
|
|
|
2018-11-13 15:52:33 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
bleach
|
|
|
|
cffi
|
|
|
|
configparser
|
|
|
|
html5lib
|
|
|
|
ipaddr
|
|
|
|
jinja2
|
|
|
|
misaka
|
|
|
|
werkzeug
|
|
|
|
];
|
2018-02-22 18:52:54 +00:00
|
|
|
|
|
|
|
checkInputs = [ nose ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
${python.interpreter} setup.py nosetests
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A commenting server similar to Disqus";
|
|
|
|
homepage = https://posativ.org/isso/;
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ fgaz ];
|
|
|
|
};
|
|
|
|
}
|
2018-11-13 15:52:33 +00:00
|
|
|
|