From 374d4ad151183b3b6d44373768eae70a74897c05 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 20 May 2022 14:56:40 +0200 Subject: [PATCH] python310Packages.pox: 0.2.7 -> 0.3.1 --- .../python-modules/pox/default.nix | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/pox/default.nix b/pkgs/development/python-modules/pox/default.nix index 24591824e07..3659c7e5497 100644 --- a/pkgs/development/python-modules/pox/default.nix +++ b/pkgs/development/python-modules/pox/default.nix @@ -1,21 +1,32 @@ { lib , buildPythonPackage , fetchPypi +, pythonOlder }: buildPythonPackage rec { pname = "pox"; - version = "0.2.7"; + version = "0.3.1"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - sha256 = "06afe1a4a1dbf8b47f7ad5a3c1d8ada9104c64933a1da11338269a2bd8642778"; + sha256 = "sha256-y7DArNZQwP+2IJmdphHpOq5RBcRqCExM6vL3BO1wjB4="; }; + # Test sare failing the sandbox + doCheck = false; + + pythonImportsCheck = [ + "pox" + ]; + meta = with lib; { description = "Utilities for filesystem exploration and automated builds"; + homepage = "https://pox.readthedocs.io/"; license = licenses.bsd3; - homepage = "https://github.com/uqfoundation/pox/"; + maintainers = with maintainers; [ ]; }; - }