Skip to content

Commit

Permalink
python3Packages.mdformat-tables: fix dependencies (#379033)
Browse files Browse the repository at this point in the history
  • Loading branch information
vcunat committed Feb 5, 2025
2 parents 948f941 + ba91fc2 commit 37f980f
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions pkgs/development/python-modules/mdformat-tables/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,17 @@
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,

# build dependencies
flit-core,

# dependencies
mdformat,
wcwidth,

# tests
pytestCheckHook,
pythonOlder,
}:

buildPythonPackage rec {
Expand All @@ -22,9 +29,12 @@ buildPythonPackage rec {
hash = "sha256-7MbpGBGprhGrQ9P31HUU2h0bjyHWap6DETVN/dCDA1w=";
};

nativeBuildInputs = [ flit-core ];
build-system = [ flit-core ];

propagatedBuildInputs = [ mdformat ];
dependencies = [
mdformat
wcwidth
];

nativeCheckInputs = [ pytestCheckHook ];

Expand Down

0 comments on commit 37f980f

Please sign in to comment.