Merge pull request #153256 from fabaff/bump-cmarkgfm

python3Packages.cmarkgfm: 0.6.0 -> 0.7.0
This commit is contained in:
Pavol Rusnak 2022-01-05 16:56:07 +01:00 committed by GitHub
commit df08261613
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,24 +3,36 @@
, cffi
, fetchPypi
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "cmarkgfm";
version = "0.6.0";
version = "0.7.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "ec2bf8d5799c4b5bbfbae30a4a1dfcb06512f2e17e9ee60ba7e1d390318582fc";
sha256 = "sha256-plwVL52ov4JxTxnCh/4JaO6Of4mejZRQPXPQ/lcinBk=";
};
propagatedNativeBuildInputs = [ cffi ];
propagatedNativeBuildInputs = [
cffi
];
propagatedBuildInputs = [ cffi ];
propagatedBuildInputs = [
cffi
];
checkInputs = [ pytestCheckHook ];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "cmarkgfm" ];
pythonImportsCheck = [
"cmarkgfm"
];
meta = with lib; {
description = "Minimal bindings to GitHub's fork of cmark";