summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/posix-ipc/default.nix
blob: 0b3d1e4d055ee331b7ebe74d3e3a4f0b766bb205 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
}:

buildPythonPackage rec {
  pname = "posix-ipc";
  version = "1.3.2";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "osvenskan";
    repo = "posix_ipc";
    rev = "rel${version}";
    hash = "sha256-Ehhk+IM3gTW6t6Cvc9AVAB9bscC0CMc6wQFgrZuCPz0=";
  };

  pythonImportsCheck = [ "posix_ipc" ];

  meta = {
    description = "POSIX IPC primitives (semaphores, shared memory and message queues)";
    homepage = "https://github.com/osvenskan/posix_ipc";
    license = lib.licenses.bsd3;
    maintainers = [ ];
  };
}