nixpkgs/pkgs/servers/isso/default.nix

63 lines
1.3 KiB
Nix
Raw Normal View History

{ pkgs, nodejs, lib, python3Packages, fetchFromGitHub }:
let
nodeEnv = import ./node-env.nix {
inherit (pkgs) stdenv lib python2 runCommand writeTextFile;
inherit pkgs nodejs;
libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null;
};
nodePackages = import ./node-packages.nix {
inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit;
inherit nodeEnv;
};
nodeDependencies = (nodePackages.shell.override (old: {
})).nodeDependencies;
in
with python3Packages; buildPythonApplication rec {
2018-02-22 18:52:54 +00:00
pname = "isso";
2021-03-26 17:59:11 +00:00
version = "0.12.5";
2018-02-22 18:52:54 +00:00
src = fetchFromGitHub {
owner = "posativ";
repo = pname;
rev = version;
2021-03-26 17:59:11 +00:00
sha256 = "12ccfba2kwbfm9h4zhlxrcigi98akbdm4qi89iglr4z53ygzpay5";
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
];
2021-03-26 17:59:11 +00:00
nativeBuildInputs = [
cffi
nodejs
2018-11-13 15:52:33 +00:00
];
2018-02-22 18:52:54 +00:00
preBuild = ''
ln -s ${nodeDependencies}/lib/node_modules ./node_modules
export PATH="${nodeDependencies}/bin:$PATH"
make js
'';
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 ];
};
}