evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / types-toml / default.nix
blob040177b5e68fd9a9b2ad5726e96d95da3b292358
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "types-toml";
9   version = "0.10.8.20240310";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-PUFQEwKXJDamuLI5yFCyZollfiUoG0j/DsBjRbiDAzE=";
15   };
17   # Module doesn't have tests
18   doCheck = false;
20   pythonImportsCheck = [ "toml-stubs" ];
22   meta = with lib; {
23     description = "Typing stubs for toml";
24     homepage = "https://github.com/python/typeshed";
25     license = licenses.asl20;
26     maintainers = with maintainers; [ fab ];
27   };