python311Packages.types-markdown: init at 3.5.0.20240106

This commit is contained in:
Fabian Affolter
2024-01-08 23:11:26 +01:00
parent 78a929caf9
commit 8bc72925aa
2 changed files with 34 additions and 0 deletions
@@ -0,0 +1,32 @@
{ lib
, buildPythonPackage
, fetchPypi
, setuptools
}:
buildPythonPackage rec {
pname = "types-markdown";
version = "3.5.0.20240106";
pyproject = true;
src = fetchPypi {
pname = "types-Markdown";
inherit version;
hash = "sha256-vkfTXL5h1Fi9F67BJ/HaIzzW7Zb6mhMccQN4pOiFcDA=";
};
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 ];
};
}
+2
View File
@@ -15407,6 +15407,8 @@ self: super: with self; {
types-ipaddress = callPackage ../development/python-modules/types-ipaddress { };
types-markdown = callPackage ../development/python-modules/types-markdown { };
types-mock = callPackage ../development/python-modules/types-mock { };
types-pillow = callPackage ../development/python-modules/types-pillow { };