about summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-ipmi
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/python-ipmi')
-rw-r--r--pkgs/development/python-modules/python-ipmi/default.nix49
1 files changed, 0 insertions, 49 deletions
diff --git a/pkgs/development/python-modules/python-ipmi/default.nix b/pkgs/development/python-modules/python-ipmi/default.nix
deleted file mode 100644
index 2e644fa1dc82..000000000000
--- a/pkgs/development/python-modules/python-ipmi/default.nix
+++ /dev/null
@@ -1,49 +0,0 @@
-{
-  lib,
-  buildPythonPackage,
-  fetchFromGitHub,
-  future,
-  mock,
-  pytestCheckHook,
-  pythonOlder,
-  setuptools,
-}:
-
-buildPythonPackage rec {
-  pname = "python-ipmi";
-  version = "0.5.5";
-  pyproject = true;
-
-  disabled = pythonOlder "3.6";
-
-  src = fetchFromGitHub {
-    owner = "kontron";
-    repo = "python-ipmi";
-    rev = "refs/tags/${version}";
-    hash = "sha256-G5FcFHtyN8bXMjj/yfJgzcfmV1mxQ9lu3GM3XMeTWVU=";
-  };
-
-  postPatch = ''
-    substituteInPlace setup.py \
-      --replace-fail "version=version," "version='${version}',"
-  '';
-
-  nativeBuildInputs = [ setuptools ];
-
-  propagatedBuildInputs = [ future ];
-
-  nativeCheckInputs = [
-    mock
-    pytestCheckHook
-  ];
-
-  pythonImportsCheck = [ "pyipmi" ];
-
-  meta = with lib; {
-    description = "Python IPMI Library";
-    mainProgram = "ipmitool.py";
-    homepage = "https://github.com/kontron/python-ipmi";
-    license = with licenses; [ lgpl2Plus ];
-    maintainers = with maintainers; [ fab ];
-  };
-}