1{ stdenv
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "posix_ipc";
8 version = "1.0.4";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "ff6c9077633fc62a491d6997c43b094d885bb45a7ca1f36c9a0d647c54b74b14";
13 };
14
15 meta = with stdenv.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}