Files
2026-03-07 08:14:00 +00:00

31 lines
639 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
}:
buildPythonPackage rec {
pname = "ioctl-opt";
version = "1.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "vpelletier";
repo = "python-ioctl-opt";
tag = version;
hash = "sha256-IdE1HZ0fj1Cv4bJRQOEv23O3bCiPUP4R10oGhSWjEXA=";
};
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 ];
};
}