python312Packages.ioctl-opt: init at 1.3

This commit is contained in:
emaryn 2025-02-28 04:24:13 +08:00 committed by emaryn
parent 62b32a63f5
commit bcd12f578b
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage rec {
pname = "ioctl-opt";
version = "1.3";
pyproject = true;
src = fetchFromGitHub {
owner = "vpelletier";
repo = "python-ioctl-opt";
tag = version;
hash = "sha256-OPQmJUrZIFPdoKitlqWvgMHkLSK2nC01Yy7UpGy+aP8=";
};
build-system = [ setuptools ];
pythonImportsCheck = [ "ioctl_opt" ];
meta = {
description = "Pythonified linux asm-generic/ioctl.h";
homepage = "https://github.com/vpelletier/python-ioctl-opt";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ rnhmjoj ];
};
}

View File

@ -6490,6 +6490,8 @@ self: super: with self; {
iocextract = callPackage ../development/python-modules/iocextract { };
ioctl-opt = callPackage ../development/python-modules/ioctl-opt { };
ionhash = callPackage ../development/python-modules/ionhash { };
ionoscloud = callPackage ../development/python-modules/ionoscloud { };