From 1e09e64a73c1c46ce710e09526c87a6deaeea7f1 Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Tue, 10 Dec 2019 19:45:21 -0800 Subject: [PATCH] pythonPackages.testresources: Move pbr to propagatedBuildInputs Since testresources declares `Requires-Dist: pbr (>=1.8)` and imports `pbr.version`, any user of testresources also needs to have pbr. Signed-off-by: Anders Kaseorg --- pkgs/development/python-modules/testresources/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/testresources/default.nix b/pkgs/development/python-modules/testresources/default.nix index fa4fc0b1fedf..ce00b17b1773 100644 --- a/pkgs/development/python-modules/testresources/default.nix +++ b/pkgs/development/python-modules/testresources/default.nix @@ -10,7 +10,7 @@ buildPythonPackage rec { sha256 = "ee9d1982154a1e212d4e4bac6b610800bfb558e4fb853572a827bc14a96e4417"; }; - buildInputs = [ pbr ]; + propagatedBuildInputs = [ pbr ]; checkInputs = [ fixtures testtools ];