about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJean-Paul Calderone <exarkun@users.noreply.github.com>2019-04-29 03:43:47 -0400
committerRobert Schütz <rschuetz17@gmail.com>2019-04-29 09:43:47 +0200
commit54c22e639c2a57005833be4292950b233894106a (patch)
treef5a5dbcbcac23bc24a6fc3c73e5bcb82f72300c6
parentf92191e397dbb1c56ff4f2cddde482f9f07fd4c2 (diff)
downloadnixlib-54c22e639c2a57005833be4292950b233894106a.tar
nixlib-54c22e639c2a57005833be4292950b233894106a.tar.gz
nixlib-54c22e639c2a57005833be4292950b233894106a.tar.bz2
nixlib-54c22e639c2a57005833be4292950b233894106a.tar.lz
nixlib-54c22e639c2a57005833be4292950b233894106a.tar.xz
nixlib-54c22e639c2a57005833be4292950b233894106a.tar.zst
nixlib-54c22e639c2a57005833be4292950b233894106a.zip
pyhamcrest: switch from application to package (#60214)
pyhamcrest is a testing library with no application component.
-rw-r--r--pkgs/development/python-modules/pyhamcrest/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/pyhamcrest/default.nix b/pkgs/development/python-modules/pyhamcrest/default.nix
index f452d0599362..18540aca50eb 100644
--- a/pkgs/development/python-modules/pyhamcrest/default.nix
+++ b/pkgs/development/python-modules/pyhamcrest/default.nix
@@ -1,8 +1,8 @@
-{ stdenv, buildPythonApplication, fetchPypi
+{ stdenv, buildPythonPackage, fetchPypi
 , mock, pytest
 , six
 }:
-buildPythonApplication rec {
+buildPythonPackage rec {
   pname = "PyHamcrest";
   version = "1.9.0";