Unverified Commit 4ee81ce9 authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #312324 from mweinelt/pinnwand-1.5.0

pinnwand: 1.4.0 -> 1.5.0
parents 3f888f67 b38f00e0
Loading
Loading
Loading
Loading
+14 −4
Original line number Diff line number Diff line
{ lib
, python3
, fetchFromGitHub
, fetchpatch2
, nixosTests
}:

with python3.pkgs; buildPythonApplication rec {
  pname = "pinnwand";
  version = "1.4.0";
  format = "pyproject";
  version = "1.5.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "supakeen";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-zJH2ojLQChElRvU2TWg4lW+Mey+wP0XbLJhVF16nvss=";
    hash = "sha256-1Q/jRjFUoJb1S3cGF8aVuguWMJwYrAtXdKpZV8nRK0k=";
  };

  patches = [
    (fetchpatch2 {
      # fix entrypoint
      url = "https://github.com/supakeen/pinnwand/commit/7868b4b4dcd57066dd0023b5a3cbe91fc5a0a858.patch";
      hash = "sha256-Fln9yJNRvNPHZ0JIgzmwwjUpAHMu55NaEb8ZVDWhLyE=";
    })
  ];

  nativeBuildInputs = [
    poetry-core
    pdm-pep517
    pythonRelaxDepsHook
  ];

@@ -31,6 +40,7 @@ with python3.pkgs; buildPythonApplication rec {
    docutils
    pygments
    pygments-better-html
    python-dotenv
    sqlalchemy
    token-bucket
    tomli