nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5}:
6
7buildPythonPackage rec {
8 pname = "posix-ipc";
9 version = "1.3.2";
10 format = "setuptools";
11
12 src = fetchFromGitHub {
13 owner = "osvenskan";
14 repo = "posix_ipc";
15 rev = "rel${version}";
16 hash = "sha256-Ehhk+IM3gTW6t6Cvc9AVAB9bscC0CMc6wQFgrZuCPz0=";
17 };
18
19 pythonImportsCheck = [ "posix_ipc" ];
20
21 meta = {
22 description = "POSIX IPC primitives (semaphores, shared memory and message queues)";
23 homepage = "https://github.com/osvenskan/posix_ipc";
24 license = lib.licenses.bsd3;
25 maintainers = [ ];
26 };
27}