nixpkgs/pkgs/servers/pinnwand/default.nix

62 lines
1.3 KiB
Nix
Raw Permalink Normal View History

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