Merge pull request #166532 from r-ryantm/auto-update/python3.10-wasabi

python310Packages.wasabi: 0.9.0 -> 0.9.1

authored by

Fabian Affolter and committed by
GitHub
1c599bc6 ed4b2c6b

+14 -3
+14 -3
pkgs/development/python-modules/wasabi/default.nix
··· 2 , buildPythonPackage 3 , fetchPypi 4 , pytestCheckHook 5 }: 6 7 buildPythonPackage rec { 8 pname = "wasabi"; 9 - version = "0.9.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - sha256 = "152245d892030a3a7b511038e9472acff6d0e237cfe4123fef0d147f2d3274fc"; 14 }; 15 16 - checkInputs = [ pytestCheckHook ]; 17 18 meta = with lib; { 19 description = "A lightweight console printing and formatting toolkit"; 20 homepage = "https://github.com/ines/wasabi"; 21 changelog = "https://github.com/ines/wasabi/releases/tag/v${version}"; 22 license = licenses.mit; 23 }; 24 }
··· 2 , buildPythonPackage 3 , fetchPypi 4 , pytestCheckHook 5 + , pythonOlder 6 }: 7 8 buildPythonPackage rec { 9 pname = "wasabi"; 10 + version = "0.9.1"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 + sha256 = "sha256-rabxPptw7ya/lfrQ/r396+IAXimgitWPS7rjg6lymM8="; 18 }; 19 20 + checkInputs = [ 21 + pytestCheckHook 22 + ]; 23 + 24 + pythonImportsCheck = [ 25 + "wasabi" 26 + ]; 27 28 meta = with lib; { 29 description = "A lightweight console printing and formatting toolkit"; 30 homepage = "https://github.com/ines/wasabi"; 31 changelog = "https://github.com/ines/wasabi/releases/tag/v${version}"; 32 license = licenses.mit; 33 + maintainers = with maintainers; [ ]; 34 }; 35 }