nixpkgs/pkgs/servers/pinnwand/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
984 B
Nix
Raw Normal View History

{ lib
, python3
, fetchFromGitHub
, fetchpatch
, nixosTests
}:
with python3.pkgs; buildPythonApplication rec {
2020-05-27 03:12:59 +03:00
pname = "pinnwand";
version = "1.4.0";
format = "pyproject";
2020-05-27 03:12:59 +03:00
src = fetchFromGitHub {
owner = "supakeen";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-zJH2ojLQChElRvU2TWg4lW+Mey+wP0XbLJhVF16nvss=";
2020-05-27 03:12:59 +03:00
};
nativeBuildInputs = [
poetry-core
];
2020-05-27 03:12:59 +03:00
propagatedBuildInputs = [
click
docutils
pygments
2020-05-27 03:12:59 +03:00
pygments-better-html
sqlalchemy
token-bucket
tomli
tornado
2020-05-27 03:12:59 +03:00
];
checkInputs = [
pytestCheckHook
];
2021-01-11 08:34:19 +03:00
__darwinAllowLocalNetworking = true;
2020-06-04 00:12:06 +03:00
passthru.tests = nixosTests.pinnwand;
2020-05-27 03:12:59 +03:00
meta = with lib; {
changelog = "https://github.com/supakeen/pinnwand/releases/tag/v${version}";
description = "A Python pastebin that tries to keep it simple";
2020-05-27 03:12:59 +03:00
homepage = "https://supakeen.com/project/pinnwand/";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}