From 064cfac4f9ef9863fef761b0afa263192e46405c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Mon, 28 Nov 2022 03:41:50 +0000 Subject: [PATCH 1/3] python310Packages.posix_ipc: 1.0.5 -> 1.1.0 --- pkgs/development/python-modules/posix_ipc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/posix_ipc/default.nix b/pkgs/development/python-modules/posix_ipc/default.nix index 59f4b4b707f2..58b7f3369e83 100644 --- a/pkgs/development/python-modules/posix_ipc/default.nix +++ b/pkgs/development/python-modules/posix_ipc/default.nix @@ -5,11 +5,11 @@ buildPythonPackage rec { pname = "posix_ipc"; - version = "1.0.5"; + version = "1.1.0"; src = fetchPypi { inherit pname version; - sha256 = "6cddb1ce2cf4aae383f2a0079c26c69bee257fe2720f372201ef047f8ceb8b97"; + sha256 = "sha256-+GoVsys4Vzx44wXr2RANgZij2frMA/+v457cNYM3OOM="; }; meta = with lib; { From 1e19e86a229ecb7e548f790b013b0b88449b3343 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Wed, 30 Nov 2022 04:20:00 +0000 Subject: [PATCH 2/3] python310Packages.posix_ipc: add format attribute --- pkgs/development/python-modules/posix_ipc/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/posix_ipc/default.nix b/pkgs/development/python-modules/posix_ipc/default.nix index 58b7f3369e83..ced7dd8482f4 100644 --- a/pkgs/development/python-modules/posix_ipc/default.nix +++ b/pkgs/development/python-modules/posix_ipc/default.nix @@ -1,21 +1,26 @@ { 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)"; license = licenses.bsd3; homepage = "http://semanchuk.com/philip/posix_ipc/"; }; - } From 7360fc09038d14038b483719e153cb6f846080e8 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Wed, 30 Nov 2022 04:20:00 +0000 Subject: [PATCH 3/3] python310Packages.posix_ipc: update meta --- pkgs/development/python-modules/posix_ipc/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/posix_ipc/default.nix b/pkgs/development/python-modules/posix_ipc/default.nix index ced7dd8482f4..9506e4fca4fc 100644 --- a/pkgs/development/python-modules/posix_ipc/default.nix +++ b/pkgs/development/python-modules/posix_ipc/default.nix @@ -20,7 +20,8 @@ buildPythonPackage rec { meta = with lib; { description = "POSIX IPC primitives (semaphores, shared memory and message queues)"; + homepage = "https://github.com/osvenskan/posix_ipc"; license = licenses.bsd3; - homepage = "http://semanchuk.com/philip/posix_ipc/"; + maintainers = with maintainers; [ ]; }; }