2021-04-13 19:44:15 +00:00
|
|
|
{ lib
|
|
|
|
, python3
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
|
|
|
, nixosTests
|
|
|
|
}:
|
|
|
|
|
|
|
|
with python3.pkgs; buildPythonApplication rec {
|
2020-05-29 06:06:01 +00:00
|
|
|
pname = "pinnwand";
|
2021-05-28 09:39:13 +00:00
|
|
|
version = "1.3.0";
|
2020-08-20 17:08:02 +00:00
|
|
|
format = "pyproject";
|
2020-05-29 06:06:01 +00:00
|
|
|
|
2020-08-20 17:08:02 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "supakeen";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-05-28 09:39:13 +00:00
|
|
|
sha256 = "046xk2y59wa0pdp7s3hp1gh8sqdw0yl4xab22r2x44iwwcyb0gy5";
|
2020-05-29 06:06:01 +00:00
|
|
|
};
|
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace pyproject.toml \
|
|
|
|
--replace 'click = "^7.0"' 'click = "*"' \
|
|
|
|
--replace 'docutils = "^0.16"' 'docutils = "*"' \
|
2021-07-04 02:40:35 +00:00
|
|
|
--replace 'sqlalchemy = "^1.3"' 'sqlalchemy = "*"' \
|
|
|
|
--replace 'token-bucket = "^0.2.0"' 'token-bucket = "*"'
|
2021-06-28 23:13:55 +00:00
|
|
|
'';
|
|
|
|
|
2020-08-20 17:08:02 +00:00
|
|
|
nativeBuildInputs = [
|
2021-01-05 17:05:55 +00:00
|
|
|
poetry-core
|
2020-08-20 17:08:02 +00:00
|
|
|
];
|
|
|
|
|
2020-05-29 06:06:01 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
click
|
|
|
|
docutils
|
2021-04-13 19:44:15 +00:00
|
|
|
pygments
|
2020-05-29 06:06:01 +00:00
|
|
|
pygments-better-html
|
|
|
|
sqlalchemy
|
2021-05-28 09:39:13 +00:00
|
|
|
token-bucket
|
2021-04-13 19:44:15 +00:00
|
|
|
toml
|
|
|
|
tornado
|
2020-05-29 06:06:01 +00:00
|
|
|
];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
disabledTests = [
|
|
|
|
# pygments renamed rst to restructuredText, hence a mismatch on this test
|
|
|
|
"test_guess_language"
|
|
|
|
];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
__darwinAllowLocalNetworking = true;
|
2021-01-05 17:05:55 +00:00
|
|
|
|
2020-08-20 17:08:02 +00:00
|
|
|
passthru.tests = nixosTests.pinnwand;
|
|
|
|
|
2020-05-29 06:06:01 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://supakeen.com/project/pinnwand/";
|
|
|
|
license = licenses.mit;
|
2020-10-19 00:13:06 +00:00
|
|
|
description = "A Python pastebin that tries to keep it simple";
|
2020-05-29 06:06:01 +00:00
|
|
|
maintainers = with maintainers; [ hexa ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|