nixpkgs/pkgs/servers/isso/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
1.4 KiB
Nix
Raw Normal View History

{ pkgs, nodejs, lib, python3Packages, fetchFromGitHub, nixosTests }:
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";
2022-04-24 05:41:07 +00:00
version = "0.12.6.2";
2018-02-22 18:52:54 +00:00
src = fetchFromGitHub {
owner = "posativ";
repo = pname;
2022-04-24 05:41:07 +00:00
rev = "refs/tags/${version}";
sha256 = "sha256-T5T3EJS8ef8uo+P9qkC+7I70qv+4PFrnhImr04Fz57U=";
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
'';
2022-03-22 14:47:35 +00:00
checkInputs = [
pytest
pytest-cov
];
2018-02-22 18:52:54 +00:00
checkPhase = ''
2022-03-22 14:47:35 +00:00
pytest
2018-02-22 18:52:54 +00:00
'';
passthru.tests = { inherit (nixosTests) isso; };
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 ];
};
}