Skip to content

Commit

Permalink
python3Packages.pdoc: 12.3.1 -> 13.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pbsds committed Mar 17, 2023
1 parent 7cef935 commit fa52143
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions pkgs/development/python-modules/pdoc/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

buildPythonPackage rec {
pname = "pdoc";
version = "12.3.1";
version = "13.0.0";
disabled = pythonOlder "3.7";

format = "pyproject";
Expand All @@ -24,7 +24,7 @@ buildPythonPackage rec {
owner = "mitmproxy";
repo = "pdoc";
rev = "v${version}";
hash = "sha256-SaLrE/eHxKnlm6BZYbcZZrbrUZMeHJ4eCcqMsFvyZ7I=";
hash = "sha256-UzUAprvBimk2POi0QZdFuRWEeGDp+MLmdUYR0UiIubs=";
};

nativeBuildInputs = [
Expand All @@ -41,13 +41,10 @@ buildPythonPackage rec {
pytestCheckHook
hypothesis
];
disabledTests = [
# Failing "test_snapshots" parametrization: Output does not match the stored snapshot
# This test seems to be sensitive to ordering of dictionary items and the version of dependencies.
# the only difference between the stored snapshot and the produced documentation is a debug javascript comment
"html-demopackage_dir"
# snapshot tests mismatch with latest pygments version
"test_snapshots"
disabledTestPaths = [
# "test_snapshots" tries to match generated output against stored snapshots.
# They are highly sensitive dep versions, which we unlike upstream do not pin.
"test/test_snapshot.py"
];

pytestFlagsArray = [
Expand Down

0 comments on commit fa52143

Please sign in to comment.