lol

Merge pull request #187847 from fabaff/readme-renderer-bump

python310Packages.readme_renderer: 36.0 -> 37.0

authored by

Fabian Affolter and committed by
GitHub
84d98bb8 c25e0f81

+11 -6
+2 -2
pkgs/development/python-modules/readme_renderer/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "readme-renderer"; 15 - version = "36.0"; 15 + version = "37.0"; 16 16 format = "setuptools"; 17 17 18 18 disabled = pythonOlder "3.6"; ··· 20 20 src = fetchPypi { 21 21 pname = "readme_renderer"; 22 22 inherit version; 23 - sha256 = "sha256-9xru+aWI/L7R9MwAG6YRNw6UoM0nx1sRQFN2GOx48KI="; 23 + sha256 = "sha256-B7fqI04D5Y93zCIuIG5qu49MBDW+zOUQR5TuWR+TAcU="; 24 24 }; 25 25 26 26 propagatedBuildInputs = [
+9 -4
pkgs/development/python-modules/restview/default.nix
··· 18 18 19 19 src = fetchPypi { 20 20 inherit pname version; 21 - sha256 = "sha256-K5iWEKrtL9Qtpk9s3FOc8+5wzjcLy6hy23JCGtUV3R4="; 21 + hash = "sha256-K5iWEKrtL9Qtpk9s3FOc8+5wzjcLy6hy23JCGtUV3R4="; 22 22 }; 23 23 24 24 propagatedBuildInputs = [ ··· 36 36 "restview" 37 37 ]; 38 38 39 - meta = { 39 + disabledTests = [ 40 + # Tests are comparing output 41 + "rest_to_html" 42 + ]; 43 + 44 + meta = with lib; { 40 45 description = "ReStructuredText viewer"; 41 46 homepage = "https://mg.pov.lt/restview/"; 42 - license = lib.licenses.gpl3Only; 43 - maintainers = with lib.maintainers; [ koral ]; 47 + license = licenses.gpl3Only; 48 + maintainers = with maintainers; [ koral ]; 44 49 }; 45 50 }