Merge pull request #153256 from fabaff/bump-cmarkgfm
python3Packages.cmarkgfm: 0.6.0 -> 0.7.0
This commit is contained in:
commit
df08261613
1 changed files with 18 additions and 6 deletions
|
@ -3,24 +3,36 @@
|
||||||
, cffi
|
, cffi
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, pytestCheckHook
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "cmarkgfm";
|
pname = "cmarkgfm";
|
||||||
version = "0.6.0";
|
version = "0.7.0";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
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; {
|
meta = with lib; {
|
||||||
description = "Minimal bindings to GitHub's fork of cmark";
|
description = "Minimal bindings to GitHub's fork of cmark";
|
||||||
|
|
Loading…
Reference in a new issue