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