python3Packages.types-freezegun: modernize

This commit is contained in:
Harinn
2026-07-10 14:47:42 +07:00
parent 647f836924
commit af26350cdd
@@ -5,13 +5,16 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "types-freezegun";
version = "1.1.10";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit pname version;
pname = "types-freezegun";
inherit (finalAttrs) version;
hash = "sha256-yzotLu6VDqy6rAZzq1BJmCM2XOuMZVursVRKQURkCew=";
};
@@ -28,4 +31,4 @@ buildPythonPackage rec {
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ jpetrucciani ];
};
}
})