We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d0ca0f commit 24c32b0Copy full SHA for 24c32b0
pkgs/development/python-modules/craft-cli/default.nix
@@ -15,15 +15,15 @@
15
16
buildPythonPackage rec {
17
pname = "craft-cli";
18
- version = "2.15.0";
+ version = "3.0.0";
19
20
pyproject = true;
21
22
src = fetchFromGitHub {
23
owner = "canonical";
24
repo = "craft-cli";
25
tag = version;
26
- hash = "sha256-L8hOQJhjVAMo/WxEHHEk2QorlSdDFMGdcL/Q3Pv6mT4=";
+ hash = "sha256-RAnvx5519iXZnJm8jtY635e0DEL7jnIgZtTCindqMTY=";
27
};
28
29
postPatch = ''
@@ -48,6 +48,11 @@ buildPythonPackage rec {
48
pytestCheckHook
49
];
50
51
+ preCheck = ''
52
+ mkdir -p check-phase
53
+ export HOME="$(pwd)/check-phase"
54
+ '';
55
+
56
pytestFlagsArray = [ "tests/unit" ];
57
58
passthru.updateScript = nix-update-script { };
0 commit comments