From 54c22e639c2a57005833be4292950b233894106a Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Mon, 29 Apr 2019 03:43:47 -0400 Subject: [PATCH] pyhamcrest: switch from application to package (#60214) pyhamcrest is a testing library with no application component. --- pkgs/development/python-modules/pyhamcrest/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyhamcrest/default.nix b/pkgs/development/python-modules/pyhamcrest/default.nix index f452d059936..18540aca50e 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";