Merge pull request #202426 from r-ryantm/auto-update/python3.10-pycmarkgfm

python310Packages.pycmarkgfm: 1.1.0 -> 1.2.0
This commit is contained in:
Mario Rodas 2022-11-24 02:43:26 -05:00 committed by GitHub
commit b550269c61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,12 +2,13 @@
buildPythonPackage rec {
pname = "pycmarkgfm";
version = "1.1.0";
version = "1.2.0";
format = "setuptools";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "694cb242f4961437c30b5b015dfbce9d1a1fa48305c2e39f902ce7c65b4cbe0e";
sha256 = "sha256-qvTMXpQhC3Yx8LwbQDiELhgdkGzjirKT30N1NkXF5ps=";
};
propagatedNativeBuildInputs = [ cffi ];
@ -27,6 +28,7 @@ buildPythonPackage rec {
meta = with lib; {
homepage = "https://github.com/zopieux/pycmarkgfm";
description = "Bindings to GitHub's Flavored Markdown (cmark-gfm), with enhanced support for task lists";
changelog = "https://github.com/zopieux/pycmarkgfm/raw/v${version}/CHANGELOG.md";
platforms = platforms.linux ++ platforms.darwin;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ zopieux ];