nixpkgs/pkgs/servers/pinnwand/default.nix

64 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, python3, fetchFromGitHub, nixosTests, fetchpatch }:
2020-05-27 02:12:59 +02: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";
version = "1.2.2";
format = "pyproject";
2020-05-27 02:12:59 +02:00
src = fetchFromGitHub {
owner = "supakeen";
repo = pname;
rev = "v${version}";
sha256 = "0cxdpc3lxgzakzgvdyyrn234380dm05svnwr8av5nrjp4nm9s8z4";
2020-05-27 02:12:59 +02:00
};
nativeBuildInputs = [
poetry-core
];
2020-05-27 02:12:59 +02:00
propagatedBuildInputs = [
click
docutils
tornado
pygments-better-html
toml
sqlalchemy
];
checkInputs = [ pytest ];
2020-05-27 02:12:59 +02:00
checkPhase = ''
pytest
2020-05-27 02:12:59 +02:00
'';
patches = [
# Use poetry-core instead of poetry. Fixed in 1.2.3
(fetchpatch {
url = "https://github.com/supakeen/pinnwand/commit/38ff5729c59abb97e4b416d3ca66466528b0eac7.patch";
sha256 = "F3cZe29z/7glmS3KWzcfmZnhYmC0LrLLS0zHk7WS2rQ=";
})
];
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;
description = "A Python pastebin that tries to keep it simple";
2020-05-27 02:12:59 +02:00
maintainers = with maintainers; [ hexa ];
};
}