Merge pull request #175793 from SuperSandro2000/python310Packages.bracex

python310Packages.bracex: 2.2.1 -> 2.3.post1

authored by Sandro and committed by GitHub 6f32fad6 170d99ef

+15 -3
+15 -3
pkgs/development/python-modules/bracex/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, pytestCheckHook }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , hatchling 5 + , pytestCheckHook 6 + , pythonOlder 7 + }: 2 8 3 9 buildPythonPackage rec { 4 10 pname = "bracex"; 5 - version = "2.2.1"; 11 + version = "2.3.post1"; 12 + format = "pyproject"; 13 + disabled = pythonOlder "3.7"; 6 14 7 15 src = fetchPypi { 8 16 inherit pname version; 9 - sha256 = "1c8d1296e00ad9a91030ccb4c291f9e4dc7c054f12c707ba3c5ff3e9a81bcd21"; 17 + sha256 = "sha256-57I/yLLNBtPewGkrqr7LJJ3alOBqYXkB/wOmxW/XFpM="; 10 18 }; 19 + 20 + nativeBuildInputs = [ 21 + hatchling 22 + ]; 11 23 12 24 checkInputs = [ pytestCheckHook ]; 13 25