Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / types-appdirs / default.nix
blob7d316400a0411c23bdd2ba669f59e6989266620a
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "types-appdirs";
8   version = "1.4.3.5";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "sha256-gyaNpkWFNhv6KR+PUGogknYhKgSXvTfwUSqTmz1p/xQ=";
13   };
15   meta = {
16     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. ";
17     homepage = "https://pypi.org/project/types-appdirss";
18     license = lib.licenses.asl20;
19     maintainers = with lib.maintainers; [ ];
20   };