+2
-12
pkgs/development/python-modules/karton-dashboard/default.nix
+2
-12
pkgs/development/python-modules/karton-dashboard/default.nix
···
1
{ lib
2
, buildPythonPackage
3
, fetchFromGitHub
4
-
, fetchpatch
5
, flask
6
, karton-core
7
, mistune
···
13
14
buildPythonPackage rec {
15
pname = "karton-dashboard";
16
-
version = "1.4.0";
17
format = "setuptools";
18
19
disabled = pythonOlder "3.7";
···
22
owner = "CERT-Polska";
23
repo = pname;
24
rev = "refs/tags/v${version}";
25
-
hash = "sha256-XMyQ0mRF4y61hqlqdxC+He+697P1URfOXQUMnV0pT7o=";
26
};
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
37
pythonRelaxDeps = [
38
"Flask"
···
1
{ lib
2
, buildPythonPackage
3
, fetchFromGitHub
4
, flask
5
, karton-core
6
, mistune
···
12
13
buildPythonPackage rec {
14
pname = "karton-dashboard";
15
+
version = "1.5.0";
16
format = "setuptools";
17
18
disabled = pythonOlder "3.7";
···
21
owner = "CERT-Polska";
22
repo = pname;
23
rev = "refs/tags/v${version}";
24
+
hash = "sha256-O7Wrl9+RWkHPO0+9aue1Nlv0263qX8Thnh5FmnoKjxU=";
25
};
26
27
pythonRelaxDeps = [
28
"Flask"