summary refs log tree commit diff
path: root/pkgs/development/python-modules/posix_ipc/default.nix
blob: 59f4b4b707f2750cc90152dba8f9e28809c12f2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "posix_ipc";
  version = "1.0.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "6cddb1ce2cf4aae383f2a0079c26c69bee257fe2720f372201ef047f8ceb8b97";
  };

  meta = with lib; {
    description = "POSIX IPC primitives (semaphores, shared memory and message queues)";
    license = licenses.bsd3;
    homepage = "http://semanchuk.com/philip/posix_ipc/";
  };

}