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

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

  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; [ ];
  };
}