about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/isso/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/servers/isso/default.nix')
-rw-r--r--nixpkgs/pkgs/servers/isso/default.nix39
1 files changed, 39 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/servers/isso/default.nix b/nixpkgs/pkgs/servers/isso/default.nix
new file mode 100644
index 000000000000..b41115339873
--- /dev/null
+++ b/nixpkgs/pkgs/servers/isso/default.nix
@@ -0,0 +1,39 @@
+{ stdenv, python2, fetchFromGitHub }:
+
+with python2.pkgs; buildPythonApplication rec {
+  pname = "isso";
+  version = "0.11.1";
+
+  # no tests on PyPI
+  src = fetchFromGitHub {
+    owner = "posativ";
+    repo = pname;
+    rev = version;
+    sha256 = "0545vh0sb5i4cz9c0qgch77smpwgav3rhl1dxk9ij6rx4igjk03j";
+  };
+
+  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 ];
+  };
+}
+