2021-04-13 01:52:42 +00:00
|
|
|
{ lib
|
|
|
|
, python3
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
|
|
|
, nixosTests
|
|
|
|
}:
|
|
|
|
|
|
|
|
with python3.pkgs; buildPythonApplication rec {
|
2020-05-27 00:12:59 +00:00
|
|
|
pname = "pinnwand";
|
2022-11-27 12:24:51 +00:00
|
|
|
version = "1.4.0";
|
2020-06-20 15:08:33 +00:00
|
|
|
format = "pyproject";
|
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}";
|
|
|
|
hash = "sha256-zJH2ojLQChElRvU2TWg4lW+Mey+wP0XbLJhVF16nvss=";
|
2020-05-27 00:12:59 +00:00
|
|
|
};
|
|
|
|
|
2020-06-20 15:08:33 +00:00
|
|
|
nativeBuildInputs = [
|
2021-01-03 13:13:33 +00:00
|
|
|
poetry-core
|
2020-06-20 15:08:33 +00:00
|
|
|
];
|
|
|
|
|
2020-05-27 00:12:59 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
click
|
|
|
|
docutils
|
2021-04-13 01:52:42 +00:00
|
|
|
pygments
|
2020-05-27 00:12:59 +00:00
|
|
|
pygments-better-html
|
|
|
|
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
|
|
|
];
|
|
|
|
|
2022-11-27 12:24:51 +00:00
|
|
|
checkInputs = [
|
|
|
|
pytestCheckHook
|
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 = "A Python pastebin that tries to keep it simple";
|
2020-05-27 00:12:59 +00:00
|
|
|
homepage = "https://supakeen.com/project/pinnwand/";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ hexa ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|