2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-10-26 01:46:16 +00:00
|
|
|
, buildPythonPackage
|
2023-01-13 13:28:25 +00:00
|
|
|
, fetchFromGitHub
|
2023-01-08 08:58:47 +00:00
|
|
|
, pythonOlder
|
2018-10-26 01:46:16 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2023-01-08 09:03:45 +00:00
|
|
|
pname = "posix-ipc";
|
2023-01-08 06:05:06 +00:00
|
|
|
version = "1.1.1";
|
2022-11-30 04:20:00 +00:00
|
|
|
format = "setuptools";
|
|
|
|
|
2023-01-08 08:58:47 +00:00
|
|
|
disabled = pythonOlder "3.7";
|
2018-10-26 01:46:16 +00:00
|
|
|
|
2023-01-13 13:28:25 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "osvenskan";
|
|
|
|
repo = "posix_ipc";
|
|
|
|
rev = "rel${version}";
|
|
|
|
hash = "sha256-xK5CkThqVFVMIxBtgUfHIRNRfmBxKa/DWBYQg7QHl/M=";
|
2018-10-26 01:46:16 +00:00
|
|
|
};
|
|
|
|
|
2023-02-25 04:20:00 +00:00
|
|
|
pythonImportsCheck = [
|
2023-01-08 08:58:47 +00:00
|
|
|
"posix_ipc"
|
|
|
|
];
|
2022-11-30 04:20:00 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-10-26 01:46:16 +00:00
|
|
|
description = "POSIX IPC primitives (semaphores, shared memory and message queues)";
|
2022-11-30 04:20:00 +00:00
|
|
|
homepage = "https://github.com/osvenskan/posix_ipc";
|
2018-10-26 01:46:16 +00:00
|
|
|
license = licenses.bsd3;
|
2022-11-30 04:20:00 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2018-10-26 01:46:16 +00:00
|
|
|
};
|
|
|
|
}
|