nixpkgs/pkgs/servers/pinnwand/default.nix

56 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
, python3
, fetchFromGitHub
, fetchpatch
, nixosTests
}:
with python3.pkgs; buildPythonApplication rec {
2020-05-27 00:12:59 +00:00
pname = "pinnwand";
2021-01-11 05:34:19 +00:00
version = "1.2.3";
format = "pyproject";
2020-05-27 00:12:59 +00:00
src = fetchFromGitHub {
owner = "supakeen";
repo = pname;
rev = "v${version}";
2021-01-11 05:34:19 +00:00
sha256 = "1p6agvp136q6km7gjfv8dpjn6x4ap770lqa40ifblyhw13bsrqlh";
2020-05-27 00:12:59 +00:00
};
patches = [
(fetchpatch {
# https://github.com/supakeen/pinnwand/issues/110
url = "https://github.com/supakeen/pinnwand/commit/b9e72abb7f25104f5e57248294ed9ae1dbc87240.patch";
sha256 = "098acif9ck165398bp7vwfr9g7sj9q3pcdc42z5y63m1nbf8naan";
})
];
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
toml
tornado
2020-05-27 00:12:59 +00:00
];
2021-01-11 05:34:19 +00:00
checkInputs = [ pytestCheckHook ];
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 ];
};
}