2021-04-13 01:52:42 +00:00
|
|
|
{ lib
|
|
|
|
, python3
|
|
|
|
, fetchFromGitHub
|
|
|
|
, nixosTests
|
|
|
|
}:
|
|
|
|
|
|
|
|
with python3.pkgs; buildPythonApplication rec {
|
2020-05-27 00:12:59 +00:00
|
|
|
pname = "pinnwand";
|
2024-11-01 12:42:20 +00:00
|
|
|
version = "1.6.0";
|
2024-05-16 23:40:01 +00:00
|
|
|
pyproject = true;
|
2020-05-27 00:12:59 +00:00
|
|
|
|
2020-06-20 15:08:33 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "supakeen";
|
|
|
|
repo = pname;
|
2022-11-27 12:24:51 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2024-11-01 12:42:20 +00:00
|
|
|
hash = "sha256-oB7Dd1iVzGqr+5nG7BfZuwOQUgUnmg6ptQDZPGH7P5E=";
|
2020-05-27 00:12:59 +00:00
|
|
|
};
|
|
|
|
|
2024-11-01 12:42:20 +00:00
|
|
|
build-system = [ pdm-pep517 ];
|
2020-06-20 15:08:33 +00:00
|
|
|
|
2024-11-01 12:42:20 +00:00
|
|
|
dependencies = [
|
2020-05-27 00:12:59 +00:00
|
|
|
click
|
|
|
|
docutils
|
2021-04-13 01:52:42 +00:00
|
|
|
pygments
|
2020-05-27 00:12:59 +00:00
|
|
|
pygments-better-html
|
2024-05-16 23:40:01 +00:00
|
|
|
python-dotenv
|
2020-05-27 00:12:59 +00:00
|
|
|
sqlalchemy
|
2021-05-22 16:43:25 +00:00
|
|
|
token-bucket
|
2022-11-27 12:24:51 +00:00
|
|
|
tomli
|
2021-04-13 01:52:42 +00:00
|
|
|
tornado
|
2020-05-27 00:12:59 +00:00
|
|
|
];
|
|
|
|
|
2023-01-21 12:00:00 +00:00
|
|
|
nativeCheckInputs = [
|
2024-11-01 12:42:20 +00:00
|
|
|
gitpython
|
|
|
|
pytest-asyncio
|
|
|
|
pytest-cov-stub
|
|
|
|
pytest-html
|
|
|
|
pytest-playwright
|
2022-11-27 12:24:51 +00:00
|
|
|
pytestCheckHook
|
2024-11-01 12:42:20 +00:00
|
|
|
toml
|
|
|
|
urllib3
|
|
|
|
];
|
|
|
|
|
|
|
|
disabledTestPaths = [
|
|
|
|
# out-of-date browser tests
|
|
|
|
"test/e2e"
|
2021-06-20 20:50:58 +00:00
|
|
|
];
|
|
|
|
|
2021-01-11 05:34:19 +00:00
|
|
|
__darwinAllowLocalNetworking = true;
|
2021-01-03 13:13:33 +00:00
|
|
|
|
2020-06-03 21:12:06 +00:00
|
|
|
passthru.tests = nixosTests.pinnwand;
|
|
|
|
|
2020-05-27 00:12:59 +00:00
|
|
|
meta = with lib; {
|
2022-11-27 12:24:51 +00:00
|
|
|
changelog = "https://github.com/supakeen/pinnwand/releases/tag/v${version}";
|
|
|
|
description = "Python pastebin that tries to keep it simple";
|
2024-06-16 23:04:36 +00:00
|
|
|
homepage = "https://github.com/supakeen/pinnwand";
|
2020-05-27 00:12:59 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ hexa ];
|
2023-11-23 21:09:35 +00:00
|
|
|
mainProgram = "pinnwand";
|
2024-11-01 12:42:20 +00:00
|
|
|
platforms = platforms.linux;
|
2020-05-27 00:12:59 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|