python312Packages.ansitable: 0.11.2 -> 0.11.3

This commit is contained in:
natsukium 2024-11-01 01:51:03 +09:00
parent 2d05627c64
commit da9da5f8bd
No known key found for this signature in database
GPG Key ID: 9EA45A31DB994C53

View File

@ -12,19 +12,19 @@
buildPythonPackage rec {
pname = "ansitable";
version = "0.11.2";
version = "0.11.3";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-MQ6VLjFDt/dEHDK8PbQsBdfzogJCm+pzyVYDbqkDOao=";
hash = "sha256-navayezkSSHgwOysC3fbgTQahRZjIV24JzIAQl+X5Jk=";
};
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];
propagatedBuildInputs = [ colored ];
dependencies = [ colored ];
pythonImportsCheck = [ "ansitable" ];