linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / posix_ipc / default.nix
blob59f4b4b707f2750cc90152dba8f9e28809c12f2d
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "posix_ipc";
8   version = "1.0.5";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "6cddb1ce2cf4aae383f2a0079c26c69bee257fe2720f372201ef047f8ceb8b97";
13   };
15   meta = with lib; {
16     description = "POSIX IPC primitives (semaphores, shared memory and message queues)";
17     license = licenses.bsd3;
18     homepage = "http://semanchuk.com/philip/posix_ipc/";
19   };