depot/third_party/nixpkgs/pkgs/development/python-modules/posix_ipc/default.nix
Default email 9c6d255489 Project import generated by Copybara.
GitOrigin-RevId: 8133b9cb5f7c00d4fe31c8c2c4b525bc2650bfc0
2020-10-16 20:44:37 +00:00

21 lines
461 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "posix_ipc";
version = "1.0.5";
src = fetchPypi {
inherit pname version;
sha256 = "6cddb1ce2cf4aae383f2a0079c26c69bee257fe2720f372201ef047f8ceb8b97";
};
meta = with stdenv.lib; {
description = "POSIX IPC primitives (semaphores, shared memory and message queues)";
license = licenses.bsd3;
homepage = "http://semanchuk.com/philip/posix_ipc/";
};
}