summary refs log tree commit diff
path: root/pkgs/servers/isso/default.nix
blob: 166555099588e87d2444da0dd3355df65a6471a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ stdenv, python2, fetchFromGitHub }:

with python2.pkgs; buildPythonApplication rec {
  pname = "isso";
  version = "0.12.2";

  # no tests on PyPI
  src = fetchFromGitHub {
    owner = "posativ";
    repo = pname;
    rev = version;
    sha256 = "18v8lzwgl5hcbnawy50lfp3wnlc0rjhrnw9ja9260awkx7jra9ba";
  };

  propagatedBuildInputs = [
    bleach
    cffi
    configparser
    html5lib
    ipaddr
    jinja2
    misaka
    werkzeug
  ];

  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 ];
  };
}