python312Packages.ioctl-opt: init at 1.3
This commit is contained in:
parent
62b32a63f5
commit
bcd12f578b
30
pkgs/development/python-modules/ioctl-opt/default.nix
Normal file
30
pkgs/development/python-modules/ioctl-opt/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
x
Reference in New Issue
Block a user