nixpkgs/pkgs/servers/pinnwand/default.nix

54 lines
1.2 KiB
Nix
Raw Normal View History

2021-01-11 05:34:19 +00:00
{ lib, python3, fetchFromGitHub, nixosTests }:
2020-05-27 00:12:59 +00:00
let
python = python3.override {
packageOverrides = self: super: {
tornado = super.tornado.overridePythonAttrs (oldAttrs: rec {
version = "6.0.4";
src = oldAttrs.src.override {
inherit version;
sha256 = "1p5n7sw4580pkybywg93p8ddqdj9lhhy72rzswfa801vlidx9qhg";
};
});
};
};
in with python.pkgs; buildPythonApplication rec {
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
};
nativeBuildInputs = [
poetry-core
];
2020-05-27 00:12:59 +00:00
propagatedBuildInputs = [
click
docutils
tornado
pygments-better-html
toml
sqlalchemy
];
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 ];
};
}