about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/types-markdown/default.nix
blob: e0b1301062a65980fb07eff6b2d83230cdfafb7f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
}:

buildPythonPackage rec {
  pname = "types-markdown";
  version = "3.5.0.20240129";
  pyproject = true;

  src = fetchPypi {
    pname = "types-Markdown";
    inherit version;
    hash = "sha256-ms02/vJk2e1aljRcRffYDw2WcFnpIhOZizBG+7ZPZ/w=";
  };

  nativeBuildInputs = [
    setuptools
  ];

  pythonImportsCheck = [
    "markdown-stubs"
  ];

  meta = with lib; {
    description = "Typing stubs for Markdown";
    homepage = "https://pypi.org/project/types-Markdown/";
    license = licenses.asl20;
    maintainers = with maintainers; [ fab ];
  };
}