From 856ec13017d59fedc53bf99275f088dd8635549b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 20 Jun 2023 21:27:09 +0200 Subject: [PATCH] python311Packages.karton-dashboard: 1.4.0 -> 1.5.0 Diff: https://github.com/CERT-Polska/karton-dashboard/compare/refs/tags/v1.4.0...v1.5.0 Changelog: https://github.com/CERT-Polska/karton-dashboard/releases/tag/v1.5.0 --- .../python-modules/karton-dashboard/default.nix | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/pkgs/development/python-modules/karton-dashboard/default.nix b/pkgs/development/python-modules/karton-dashboard/default.nix index a055c423374b..60e21e63b116 100644 --- a/pkgs/development/python-modules/karton-dashboard/default.nix +++ b/pkgs/development/python-modules/karton-dashboard/default.nix @@ -1,7 +1,6 @@ { lib , buildPythonPackage , fetchFromGitHub -, fetchpatch , flask , karton-core , mistune @@ -13,7 +12,7 @@ buildPythonPackage rec { pname = "karton-dashboard"; - version = "1.4.0"; + version = "1.5.0"; format = "setuptools"; disabled = pythonOlder "3.7"; @@ -22,18 +21,9 @@ buildPythonPackage rec { owner = "CERT-Polska"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-XMyQ0mRF4y61hqlqdxC+He+697P1URfOXQUMnV0pT7o="; + hash = "sha256-O7Wrl9+RWkHPO0+9aue1Nlv0263qX8Thnh5FmnoKjxU="; }; - patches = [ - # Allow later mistune, https://github.com/CERT-Polska/karton-dashboard/pull/68 - (fetchpatch { - name = "update-mistune.patch"; - url = "https://github.com/CERT-Polska/karton-dashboard/commit/d0a2a1ffd21e9066acca77434acaff7b20e460d0.patch"; - hash = "sha256-LOqeLWoCXmVTthruBiQUYR03yPOPHhgYF/fJMhhT6Wo="; - }) - ]; - pythonRelaxDeps = [ "Flask" "mistune"