Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
84 lines
1.5 KiB
Nix
84 lines
1.5 KiB
Nix
{
|
|
pkgs,
|
|
nodejs,
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
nixosTests,
|
|
fetchNpmDeps,
|
|
npmHooks,
|
|
}:
|
|
|
|
with python3Packages;
|
|
|
|
buildPythonApplication rec {
|
|
pname = "isso";
|
|
version = "0.13.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "posativ";
|
|
repo = pname;
|
|
tag = version;
|
|
sha256 = "sha256-kZNf7Rlb1DZtQe4dK1B283OkzQQcCX+pbvZzfL65gsA=";
|
|
};
|
|
|
|
npmDeps = fetchNpmDeps {
|
|
inherit src;
|
|
hash = "sha256-RBpuhFI0hdi8bB48Pks9Ac/UdcQ/DJw+WFnNj5f7IYE=";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"doc"
|
|
];
|
|
|
|
postPatch = ''
|
|
# Remove when https://github.com/posativ/isso/pull/973 is available.
|
|
substituteInPlace isso/tests/test_comments.py \
|
|
--replace "self.client.delete_cookie('localhost.local', '1')" "self.client.delete_cookie(key='1', domain='localhost')"
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
itsdangerous
|
|
jinja2
|
|
misaka
|
|
html5lib
|
|
werkzeug
|
|
bleach
|
|
flask-caching
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cffi
|
|
sphinxHook
|
|
sphinx
|
|
nodejs
|
|
npmHooks.npmConfigHook
|
|
];
|
|
|
|
NODE_PATH = "$npmDeps";
|
|
|
|
preBuild = ''
|
|
ln -s ${npmDeps}/node_modules ./node_modules
|
|
export PATH="${npmDeps}/bin:$PATH"
|
|
|
|
make js
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-cov-stub
|
|
];
|
|
|
|
passthru.tests = { inherit (nixosTests) isso; };
|
|
|
|
meta = with lib; {
|
|
description = "Commenting server similar to Disqus";
|
|
mainProgram = "isso";
|
|
homepage = "https://posativ.org/isso/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fgaz ];
|
|
};
|
|
}
|