evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / types-appdirs / default.nix
blob78c3cbee888239010c0062d8b9278ac3375647db
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5 }:
7 buildPythonPackage rec {
8   pname = "types-appdirs";
9   version = "1.4.3.5";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-gyaNpkWFNhv6KR+PUGogknYhKgSXvTfwUSqTmz1p/xQ=";
15   };
17   meta = {
18     description = "This is a PEP 561 type stub package for the appdirs package. It can be used by type-checking tools like mypy, pyright, pytype, PyCharm, etc. to check code that uses appdirs.";
19     homepage = "https://pypi.org/project/types-appdirs";
20     license = lib.licenses.asl20;
21     maintainers = [ ];
22   };