python3Packages.types-toml: init at 0.10.0

python3Packages.types-toml: init at 0.10.1
This commit is contained in:
Fabian Affolter 2021-11-10 15:16:19 +01:00
parent 2de888a972
commit 333bc1c058
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "types-toml";
version = "0.10.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "1jqh0vki1hccj391gnxpblim429sj56npgq2z749f8v9ay6qy7sw";
};
# Module doesn't have tests
doCheck = false;
pythonImportsCheck = [ "toml-stubs" ];
meta = with lib; {
description = "Typing stubs for toml";
homepage = "https://github.com/python/typeshed";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}

View File

@ -9470,6 +9470,8 @@ in {
types-requests = callPackage ../development/python-modules/types-requests { };
types-toml = callPackage ../development/python-modules/types-toml { };
typesentry = callPackage ../development/python-modules/typesentry { };
typesystem = callPackage ../development/python-modules/typesystem { };