nixpkgs/pkgs/servers/pinnwand/default.nix

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

57 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
, python3
, fetchFromGitHub
, nixosTests
}:
with python3.pkgs; buildPythonApplication rec {
2020-05-27 02:12:59 +02:00
pname = "pinnwand";
version = "1.4.0";
format = "pyproject";
2020-05-27 02:12:59 +02:00
src = fetchFromGitHub {
owner = "supakeen";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-zJH2ojLQChElRvU2TWg4lW+Mey+wP0XbLJhVF16nvss=";
2020-05-27 02:12:59 +02:00
};
nativeBuildInputs = [
poetry-core
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'sqlalchemy = "^1.4"' 'sqlalchemy = "*"'
'';
2020-05-27 02:12:59 +02:00
propagatedBuildInputs = [
click
docutils
pygments
2020-05-27 02:12:59 +02:00
pygments-better-html
sqlalchemy
token-bucket
tomli
tornado
2020-05-27 02:12:59 +02:00
];
nativeCheckInputs = [
pytestCheckHook
];
2021-01-11 06:34:19 +01:00
__darwinAllowLocalNetworking = true;
2020-06-03 23:12:06 +02:00
passthru.tests = nixosTests.pinnwand;
2020-05-27 02:12:59 +02: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 02:12:59 +02:00
homepage = "https://supakeen.com/project/pinnwand/";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
2023-11-23 22:09:35 +01:00
mainProgram = "pinnwand";
2020-05-27 02:12:59 +02:00
};
}