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

Changed files
+2 -12
pkgs
development
python-modules
karton-dashboard
+2 -12
pkgs/development/python-modules/karton-dashboard/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , flask 6 5 , karton-core 7 6 , mistune ··· 13 12 14 13 buildPythonPackage rec { 15 14 pname = "karton-dashboard"; 16 - version = "1.4.0"; 15 + version = "1.5.0"; 17 16 format = "setuptools"; 18 17 19 18 disabled = pythonOlder "3.7"; ··· 22 21 owner = "CERT-Polska"; 23 22 repo = pname; 24 23 rev = "refs/tags/v${version}"; 25 - hash = "sha256-XMyQ0mRF4y61hqlqdxC+He+697P1URfOXQUMnV0pT7o="; 24 + hash = "sha256-O7Wrl9+RWkHPO0+9aue1Nlv0263qX8Thnh5FmnoKjxU="; 26 25 }; 27 - 28 - patches = [ 29 - # Allow later mistune, https://github.com/CERT-Polska/karton-dashboard/pull/68 30 - (fetchpatch { 31 - name = "update-mistune.patch"; 32 - url = "https://github.com/CERT-Polska/karton-dashboard/commit/d0a2a1ffd21e9066acca77434acaff7b20e460d0.patch"; 33 - hash = "sha256-LOqeLWoCXmVTthruBiQUYR03yPOPHhgYF/fJMhhT6Wo="; 34 - }) 35 - ]; 36 26 37 27 pythonRelaxDeps = [ 38 28 "Flask"