python312Packages.types-dataclasses: init at 0.6.6

Typing stubs for dataclasses

https://github.com/python/typeshed
This commit is contained in:
Fabian Affolter 2024-04-12 21:10:30 +02:00
parent 468109d4f7
commit 5f09b60800
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
}:
buildPythonPackage rec {
pname = "types-dataclasses";
version = "0.6.6";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-S1ovz45WjVoZdM1pAQ4yDhr4JRF37JaN57m7SapJ97k=";
};
build-system = [ setuptools ];
# Modules doesn't have tests
doCheck = false;
pythonImportsCheck = [ "dataclasses-stubs" ];
meta = with lib; {
description = "Typing stubs for dataclasses";
homepage = "https://github.com/python/typeshed";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -16080,6 +16080,8 @@ self: super: with self; {
types-colorama = callPackage ../development/python-modules/types-colorama { };
types-dataclasses = callPackage ../development/python-modules/types-dataclasses { };
types-dateutil = callPackage ../development/python-modules/types-dateutil { };
types-decorator = callPackage ../development/python-modules/types-decorator { };