2021-01-25 09:26:54 +01:00
|
|
|
{ lib
|
2018-10-25 21:46:16 -04:00
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2023-01-08 09:58:47 +01:00
|
|
|
, pythonOlder
|
2018-10-25 21:46:16 -04:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2023-01-08 10:03:45 +01: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 09:58:47 +01:00
|
|
|
disabled = pythonOlder "3.7";
|
2018-10-25 21:46:16 -04:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2023-01-08 09:58:47 +01:00
|
|
|
hash = "sha256-4kVroM+y7luhQSFFDo2CWzxKFGH8oHYSIKq2bUERy7c=";
|
2018-10-25 21:46:16 -04:00
|
|
|
};
|
|
|
|
|
2023-01-08 09:58:47 +01:00
|
|
|
pythonImportsCheckHook = [
|
|
|
|
"posix_ipc"
|
|
|
|
];
|
2022-11-30 04:20:00 +00:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2018-10-25 21:46:16 -04: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-25 21:46:16 -04:00
|
|
|
license = licenses.bsd3;
|
2022-11-30 04:20:00 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2018-10-25 21:46:16 -04:00
|
|
|
};
|
|
|
|
}
|