summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2023-06-08 03:07:23 +0200
committerGitHub <noreply@github.com>2023-06-08 03:07:23 +0200
commit59fcfbea18ef091907a114ed41ccba6fc926994a (patch)
treee6f8520715972c81cfe38dd084544e8e2d963738
parent[Backport release-23.05] python3Packages.oauthlib: add some key reverse depen... (diff)
parentpython3Packages.pathspec: add key reverse dependencies to passthru.tests (diff)
downloadnixpkgs-59fcfbea18ef091907a114ed41ccba6fc926994a.tar.gz
Merge pull request #236555 from NixOS/backport-191558-to-release-23.05
[Backport release-23.05] python3Packages.pathspec: add key reverse dependencies to `passthru.tests`
-rw-r--r--pkgs/development/python-modules/pathspec/default.nix10
1 files changed, 10 insertions, 0 deletions
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";