3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/posix_ipc/default.nix
2022-11-30 04:20:00 +00:00

28 lines
580 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
}:
buildPythonPackage rec {
pname = "posix_ipc";
version = "1.1.0";
format = "setuptools";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-+GoVsys4Vzx44wXr2RANgZij2frMA/+v457cNYM3OOM=";
};
pythonImportsCheckHook = [ "posix_ipc" ];
meta = with lib; {
description = "POSIX IPC primitives (semaphores, shared memory and message queues)";
homepage = "https://github.com/osvenskan/posix_ipc";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}