python.pkgs.contextlib2: fix tests

This commit is contained in:
Frederik Rietdijk 2017-12-05 20:34:20 +01:00
parent 0e92f2100c
commit 501bc2f91b

View File

@ -1,6 +1,7 @@
{ lib { lib
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, unittest2
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -13,6 +14,8 @@ buildPythonPackage rec {
sha256 = "509f9419ee91cdd00ba34443217d5ca51f5a364a404e1dce9e8979cea969ca48"; sha256 = "509f9419ee91cdd00ba34443217d5ca51f5a364a404e1dce9e8979cea969ca48";
}; };
checkInputs = [ unittest2 ];
meta = { meta = {
description = "Backports and enhancements for the contextlib module"; description = "Backports and enhancements for the contextlib module";
homepage = http://contextlib2.readthedocs.org/; homepage = http://contextlib2.readthedocs.org/;