python3Packages.python-ipmi: clean up dependencies

This commit is contained in:
Robert Schütz
2025-06-15 18:45:28 -07:00
parent 5a0be37d95
commit e0eb0844fc
@@ -2,10 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
future,
mock,
pytestCheckHook,
pythonOlder,
setuptools,
}:
@@ -14,8 +11,6 @@ buildPythonPackage rec {
version = "0.5.7";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "kontron";
repo = "python-ipmi";
@@ -28,12 +23,9 @@ buildPythonPackage rec {
--replace-fail "version=version," "version='${version}',"
'';
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ future ];
build-system = [ setuptools ];
nativeCheckInputs = [
mock
pytestCheckHook
];