about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorOTABI Tomoya <tomoya.otabi@gmail.com>2023-08-12 09:47:39 +0900
committerGitHub <noreply@github.com>2023-08-12 09:47:39 +0900
commit31971a3c683b2604fb2ae935e78eb73da8a0ed4b (patch)
treeb3128b7db96ef2e511e95fc6868209cfc8eac9a7 /pkgs/development
parentefc9780007dc2e3548907c2aec9e69249598b158 (diff)
parent17f4ee84949ab85b549a34db33e322b52f2c97af (diff)
Merge pull request #246907 from tjni/astropy-extension-helpers
python3.pkgs.astropy-extension-helpers: add build and test dependencies
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/astropy-extension-helpers/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/astropy-extension-helpers/default.nix b/pkgs/development/python-modules/astropy-extension-helpers/default.nix
index 08a5139e59797..0077cfdde1503 100644
--- a/pkgs/development/python-modules/astropy-extension-helpers/default.nix
+++ b/pkgs/development/python-modules/astropy-extension-helpers/default.nix
@@ -4,7 +4,9 @@
 , findutils
 , pytestCheckHook
 , pythonOlder
+, pip
 , setuptools-scm
+, wheel
 }:
 
 buildPythonPackage rec {
@@ -21,12 +23,14 @@ buildPythonPackage rec {
 
   nativeBuildInputs = [
     setuptools-scm
+    wheel
   ];
 
   patches = [ ./permissions.patch ];
 
   nativeCheckInputs = [
     findutils
+    pip
     pytestCheckHook
   ];