Merge pull request #180905 from r-ryantm/auto-update/python3.10-panflute

python310Packages.panflute: 2.1.3 -> 2.1.5

authored by

Fabian Affolter and committed by
GitHub
5f43d8b0 cbfd288f

+10 -5
+10 -5
pkgs/development/python-modules/panflute/default.nix
··· 3 3 , click 4 4 , pyyaml 5 5 , buildPythonPackage 6 - , isPy3k 6 + , pythonOlder 7 7 }: 8 8 9 9 buildPythonPackage rec{ 10 - version = "2.1.3"; 11 10 pname = "panflute"; 11 + version = "2.1.5"; 12 + format = "setuptools"; 12 13 13 - disabled = !isPy3k; 14 + disabled = pythonOlder "3.7"; 14 15 15 16 src = fetchPypi { 16 17 inherit pname version; 17 - sha256 = "y5QkT+dmiTuy8XLruCfsPe12G4//qE5MhLZ4ufip/5U="; 18 + hash = "sha256-7xHcWVoZh51PlonvmoOCBKJGNMpjT7z8jkoO1B65EqE="; 18 19 }; 19 20 20 21 propagatedBuildInputs = [ ··· 22 23 pyyaml 23 24 ]; 24 25 26 + pythonImportsCheck = [ 27 + "panflute" 28 + ]; 29 + 25 30 meta = with lib; { 26 - description = "A Pythonic alternative to John MacFarlane's pandocfilters, with extra helper functions"; 31 + description = "Pythonic alternative to John MacFarlane's pandocfilters, with extra helper functions"; 27 32 homepage = "http://scorreia.com/software/panflute"; 28 33 license = licenses.bsd3; 29 34 maintainers = with maintainers; [ synthetica ];