Files
nixpkgs/pkgs/development/python-modules/posix-ipc/default.nix
2025-10-26 05:42:50 +00:00

31 lines
638 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
}:
buildPythonPackage rec {
pname = "posix-ipc";
version = "1.3.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "osvenskan";
repo = "posix_ipc";
rev = "rel${version}";
hash = "sha256-Ehhk+IM3gTW6t6Cvc9AVAB9bscC0CMc6wQFgrZuCPz0=";
};
pythonImportsCheck = [ "posix_ipc" ];
meta = with lib; {
description = "POSIX IPC primitives (semaphores, shared memory and message queues)";
homepage = "https://github.com/osvenskan/posix_ipc";
license = licenses.bsd3;
maintainers = [ ];
};
}