2021-01-25 08:26:54 +00:00
|
|
|
{ lib, python3Packages, fetchFromGitHub }:
|
2020-09-10 22:40:37 +00:00
|
|
|
|
|
|
|
with python3Packages; buildPythonApplication rec {
|
2018-02-22 18:52:54 +00:00
|
|
|
|
|
|
|
pname = "isso";
|
2021-02-12 21:36:53 +00:00
|
|
|
version = "0.12.4";
|
2018-02-22 18:52:54 +00:00
|
|
|
|
|
|
|
# no tests on PyPI
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "posativ";
|
|
|
|
repo = pname;
|
2021-02-12 21:36:53 +00:00
|
|
|
rev = version;
|
|
|
|
sha256 = "16wjpz8r74fzjvzhl6by3sjc2g1riz8lh59ccgp14bns1yhsh2yi";
|
2018-02-22 18:52:54 +00:00
|
|
|
};
|
|
|
|
|
2018-11-13 15:52:33 +00:00
|
|
|
propagatedBuildInputs = [
|
2020-09-10 22:40:37 +00:00
|
|
|
itsdangerous
|
2018-11-13 15:52:33 +00:00
|
|
|
jinja2
|
|
|
|
misaka
|
2020-09-10 22:40:37 +00:00
|
|
|
html5lib
|
2018-11-13 15:52:33 +00:00
|
|
|
werkzeug
|
2020-09-10 22:40:37 +00:00
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-02-22 18:52:54 +00:00
|
|
|
description = "A commenting server similar to Disqus";
|
2020-04-01 01:11:51 +00:00
|
|
|
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
|
|
|
|