2021-04-12 18:52:42 -07:00
|
|
|
{ lib
|
|
|
|
, python3
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
|
|
|
, nixosTests
|
|
|
|
}:
|
|
|
|
|
|
|
|
with python3.pkgs; buildPythonApplication rec {
|
2020-05-26 17:12:59 -07:00
|
|
|
pname = "pinnwand";
|
2021-05-22 09:43:25 -07:00
|
|
|
version = "1.3.0";
|
2020-06-20 08:08:33 -07:00
|
|
|
format = "pyproject";
|
2020-05-26 17:12:59 -07:00
|
|
|
|
2020-06-20 08:08:33 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "supakeen";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-05-22 09:43:25 -07:00
|
|
|
sha256 = "046xk2y59wa0pdp7s3hp1gh8sqdw0yl4xab22r2x44iwwcyb0gy5";
|
2020-05-26 17:12:59 -07:00
|
|
|
};
|
|
|
|
|
2020-06-20 08:08:33 -07:00
|
|
|
nativeBuildInputs = [
|
2021-01-03 05:13:33 -08:00
|
|
|
poetry-core
|
2020-06-20 08:08:33 -07:00
|
|
|
];
|
|
|
|
|
2020-05-26 17:12:59 -07:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
click
|
|
|
|
docutils
|
2021-04-12 18:52:42 -07:00
|
|
|
pygments
|
2020-05-26 17:12:59 -07:00
|
|
|
pygments-better-html
|
|
|
|
sqlalchemy
|
2021-05-22 09:43:25 -07:00
|
|
|
token-bucket
|
2021-04-12 18:52:42 -07:00
|
|
|
toml
|
|
|
|
tornado
|
2020-05-26 17:12:59 -07:00
|
|
|
];
|
|
|
|
|
2021-01-10 21:34:19 -08:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
2020-06-20 08:08:33 -07:00
|
|
|
|
2021-01-10 21:34:19 -08:00
|
|
|
__darwinAllowLocalNetworking = true;
|
2021-01-03 05:13:33 -08:00
|
|
|
|
2020-06-03 14:12:06 -07:00
|
|
|
passthru.tests = nixosTests.pinnwand;
|
|
|
|
|
2020-05-26 17:12:59 -07:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://supakeen.com/project/pinnwand/";
|
|
|
|
license = licenses.mit;
|
2020-10-10 22:55:05 -07:00
|
|
|
description = "A Python pastebin that tries to keep it simple";
|
2020-05-26 17:12:59 -07:00
|
|
|
maintainers = with maintainers; [ hexa ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|