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
|
|
|
};
|
|
|
|
|
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-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 ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|