Merge pull request #174052 from fabaff/beautifultable-bump

python310Packages.beautifultable: 1.0.1 -> 1.1.0
main
Fabian Affolter 2 years ago committed by GitHub
commit 744992412e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 16
      pkgs/development/python-modules/beautifultable/default.nix

@ -3,17 +3,21 @@
, fetchFromGitHub
, wcwidth
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "beautifultable";
version = "1.0.1";
version = "1.1.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "pri22296";
repo = pname;
rev = "v${version}";
sha256 = "12ci6jy8qmbphsvzvj98466nlhclfzs0a0pmbsv3mf5bfcdwvbh7";
hash = "sha256-/SReCEvSwiNjBoz/3tGJ9zUNBAag4mLsHlUXwm47zCw=";
};
propagatedBuildInputs = [
@ -24,9 +28,13 @@ buildPythonPackage rec {
pytestCheckHook
];
pytestFlagsArray = [ "test.py" ];
pytestFlagsArray = [
"test.py"
];
pythonImportsCheck = [ "beautifultable" ];
pythonImportsCheck = [
"beautifultable"
];
meta = with lib; {
description = "Python package for printing visually appealing tables";

Loading…
Cancel
Save