1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "posix_ipc";
8 version = "1.0.5";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "6cddb1ce2cf4aae383f2a0079c26c69bee257fe2720f372201ef047f8ceb8b97";
13 };
14
15 meta = with lib; {
16 description = "POSIX IPC primitives (semaphores, shared memory and message queues)";
17 license = licenses.bsd3;
18 homepage = "http://semanchuk.com/philip/posix_ipc/";
19 };
20
21}