summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-faulthandler
diff options
context:
space:
mode:
authorRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-03-26 08:49:58 +0100
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2019-03-26 08:59:45 +0100
commit2413b2ac87139e27ef3131c2b54a4bf979509e32 (patch)
tree214628dfaf4b81b046df3278b34e7ca83e4ae89d /pkgs/development/python-modules/pytest-faulthandler
parentbd6d607e5bf70904a569b6be25b9e8dd785d413e (diff)
downloadnixpkgs-2413b2ac87139e27ef3131c2b54a4bf979509e32.tar
nixpkgs-2413b2ac87139e27ef3131c2b54a4bf979509e32.tar.gz
nixpkgs-2413b2ac87139e27ef3131c2b54a4bf979509e32.tar.bz2
nixpkgs-2413b2ac87139e27ef3131c2b54a4bf979509e32.tar.lz
nixpkgs-2413b2ac87139e27ef3131c2b54a4bf979509e32.tar.xz
nixpkgs-2413b2ac87139e27ef3131c2b54a4bf979509e32.tar.zst
nixpkgs-2413b2ac87139e27ef3131c2b54a4bf979509e32.zip
python.pkgs.pytest-faulthandler: fix build
fallout of https://github.com/NixOS/nixpkgs/pull/54182
Diffstat (limited to 'pkgs/development/python-modules/pytest-faulthandler')
-rw-r--r--pkgs/development/python-modules/pytest-faulthandler/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pytest-faulthandler/default.nix b/pkgs/development/python-modules/pytest-faulthandler/default.nix
index 852de1fd49c..f9e6846367c 100644
--- a/pkgs/development/python-modules/pytest-faulthandler/default.nix
+++ b/pkgs/development/python-modules/pytest-faulthandler/default.nix
@@ -17,7 +17,7 @@ buildPythonPackage rec {
     sha256 = "bf8634c3fd6309ef786ec03b913a5366163fdb094ebcfdebc35626400d790e0d";
   };
 
-  buildInputs = [ setuptools_scm pytest ];
+  nativeBuildInputs = [ setuptools_scm pytest ];
   checkInputs = [ pytest-mock ];
   propagatedBuildInputs = lib.optional (pythonOlder "3.0") faulthandler;