python3Packages.types-colorama: modernize

This commit is contained in:
Fabian Affolter
2026-07-13 13:03:46 +02:00
committed by GitHub
parent 670bb0e569
commit 7e70f17571
@@ -5,18 +5,18 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "types-colorama";
version = "0.4.15.20260508";
pyproject = true;
src = fetchPypi {
pname = "types_colorama";
inherit version;
inherit (finalAttrs) version;
hash = "sha256-OokWA55XRSvSH1fmdOHyIcqeTzGYk8Xju9N7hFwn2OY=";
};
nativeBuildInputs = [ setuptools ];
build-system = [ setuptools ];
# Module has no tests
doCheck = false;
@@ -27,4 +27,4 @@ buildPythonPackage rec {
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
})