about summary refs log tree commit diff
path: root/pkgs/development/python-modules/types-appdirs/default.nix
blob: f6fe4cf6e1b3c78cc9518c0ff993c5a3214f973a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "types-appdirs";
  version = "1.4.3.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-gyaNpkWFNhv6KR+PUGogknYhKgSXvTfwUSqTmz1p/xQ=";
  };

  meta = {
    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. ";
    homepage = "https://pypi.org/project/types-appdirs";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ ];
  };
}