Merge pull request #174052 from fabaff/beautifultable-bump

python310Packages.beautifultable: 1.0.1 -> 1.1.0

authored by Fabian Affolter and committed by GitHub 74499241 497a37dc

+12 -4
+12 -4
pkgs/development/python-modules/beautifultable/default.nix
··· 3 3 , fetchFromGitHub 4 4 , wcwidth 5 5 , pytestCheckHook 6 + , pythonOlder 6 7 }: 7 8 8 9 buildPythonPackage rec { 9 10 pname = "beautifultable"; 10 - version = "1.0.1"; 11 + version = "1.1.0"; 12 + format = "setuptools"; 13 + 14 + disabled = pythonOlder "3.7"; 11 15 12 16 src = fetchFromGitHub { 13 17 owner = "pri22296"; 14 18 repo = pname; 15 19 rev = "v${version}"; 16 - sha256 = "12ci6jy8qmbphsvzvj98466nlhclfzs0a0pmbsv3mf5bfcdwvbh7"; 20 + hash = "sha256-/SReCEvSwiNjBoz/3tGJ9zUNBAag4mLsHlUXwm47zCw="; 17 21 }; 18 22 19 23 propagatedBuildInputs = [ ··· 24 28 pytestCheckHook 25 29 ]; 26 30 27 - pytestFlagsArray = [ "test.py" ]; 31 + pytestFlagsArray = [ 32 + "test.py" 33 + ]; 28 34 29 - pythonImportsCheck = [ "beautifultable" ]; 35 + pythonImportsCheck = [ 36 + "beautifultable" 37 + ]; 30 38 31 39 meta = with lib; { 32 40 description = "Python package for printing visually appealing tables";