Merge pull request #294692 from fabaff/types-colorama-bump

python311Packages.types-colorama: 0.4.15.20240205 -> 0.4.15.20240310
This commit is contained in:
Fabian Affolter 2024-03-10 13:15:34 +01:00 committed by GitHub
commit 589df2340b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,18 +1,23 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
}:
buildPythonPackage rec {
pname = "types-colorama";
version = "0.4.15.20240205";
format = "setuptools";
version = "0.4.15.20240310";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-euT1jUB9OH9PmLJNgeG3ZX7HVOodxGGa5b0n8MNnY34=";
hash = "sha256-fr/clzbTk8+7G/5g1Q4kbnAggxC2WaZS8eV35YDWvs8=";
};
nativeBuildInputs = [
setuptools
];
# Module has no tests
doCheck = false;