mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-10 23:33:47 +00:00
31 lines
639 B
Nix
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 ];
|
|
};
|
|
}
|