python310Packages.deploykit: add pythonImportsCheck
- disable on unsupported Python releases
This commit is contained in:
parent
051dd31728
commit
ffd697364f
1 changed files with 8 additions and 0 deletions
|
@ -5,12 +5,16 @@
|
|||
, bash
|
||||
, openssh
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, stdenv
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "deploykit";
|
||||
version = "1.0.2";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "numtide";
|
||||
|
@ -34,6 +38,10 @@ buildPythonPackage rec {
|
|||
# don't swallow stdout/stderr
|
||||
pytestFlagsArray = [ "-s" ];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"deploykit"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Execute commands remote via ssh and locally in parallel with python";
|
||||
homepage = "https://github.com/numtide/deploykit";
|
||||
|
|
Loading…
Reference in a new issue