diff --git a/pkgs/development/python-modules/pathspec/default.nix b/pkgs/development/python-modules/pathspec/default.nix index 539da37ba0fd..b43bcdb2382b 100644 --- a/pkgs/development/python-modules/pathspec/default.nix +++ b/pkgs/development/python-modules/pathspec/default.nix @@ -4,6 +4,12 @@ , pythonOlder , flit-core , unittestCheckHook + +# for passthru.tests +, awsebcli +, black +, hatchling +, yamllint }: buildPythonPackage rec { @@ -28,6 +34,10 @@ buildPythonPackage rec { unittestCheckHook ]; + passthru.tests = { + inherit awsebcli black hatchling yamllint; + }; + meta = { description = "Utility library for gitignore-style pattern matching of file paths"; homepage = "https://github.com/cpburnz/python-path-specification";