2021-04-13 03:52:42 +02:00
|
|
|
{ lib
|
|
|
|
, python3
|
|
|
|
, fetchFromGitHub
|
|
|
|
, fetchpatch
|
|
|
|
, nixosTests
|
|
|
|
}:
|
|
|
|
|
|
|
|
with python3.pkgs; buildPythonApplication rec {
|
2020-05-27 02:12:59 +02:00
|
|
|
pname = "pinnwand";
|
2021-01-11 06:34:19 +01:00
|
|
|
version = "1.2.3";
|
2020-06-20 17:08:33 +02:00
|
|
|
format = "pyproject";
|
2020-05-27 02:12:59 +02:00
|
|
|
|
2020-06-20 17:08:33 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "supakeen";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-01-11 06:34:19 +01:00
|
|
|
sha256 = "1p6agvp136q6km7gjfv8dpjn6x4ap770lqa40ifblyhw13bsrqlh";
|
2020-05-27 02:12:59 +02:00
|
|
|
};
|
|
|
|
|
2021-04-13 03:52:42 +02:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
# https://github.com/supakeen/pinnwand/issues/110
|
|
|
|
url = "https://github.com/supakeen/pinnwand/commit/b9e72abb7f25104f5e57248294ed9ae1dbc87240.patch";
|
|
|
|
sha256 = "098acif9ck165398bp7vwfr9g7sj9q3pcdc42z5y63m1nbf8naan";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2020-06-20 17:08:33 +02:00
|
|
|
nativeBuildInputs = [
|
2021-01-03 14:13:33 +01:00
|
|
|
poetry-core
|
2020-06-20 17:08:33 +02:00
|
|
|
];
|
|
|
|
|
2020-05-27 02:12:59 +02:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
click
|
|
|
|
docutils
|
2021-04-13 03:52:42 +02:00
|
|
|
pygments
|
2020-05-27 02:12:59 +02:00
|
|
|
pygments-better-html
|
|
|
|
sqlalchemy
|
2021-04-13 03:52:42 +02:00
|
|
|
toml
|
|
|
|
tornado
|
2020-05-27 02:12:59 +02:00
|
|
|
];
|
|
|
|
|
2021-01-11 06:34:19 +01:00
|
|
|
checkInputs = [ pytestCheckHook ];
|
2020-06-20 17:08:33 +02:00
|
|
|
|
2021-01-11 06:34:19 +01:00
|
|
|
__darwinAllowLocalNetworking = true;
|
2021-01-03 14:13:33 +01:00
|
|
|
|
2020-06-03 23:12:06 +02:00
|
|
|
passthru.tests = nixosTests.pinnwand;
|
|
|
|
|
2020-05-27 02:12:59 +02:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://supakeen.com/project/pinnwand/";
|
|
|
|
license = licenses.mit;
|
2020-10-11 07:55:05 +02:00
|
|
|
description = "A Python pastebin that tries to keep it simple";
|
2020-05-27 02:12:59 +02:00
|
|
|
maintainers = with maintainers; [ hexa ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|