pythonPackages.curtsies: correct dependencies

This commit is contained in:
Robert Schütz 2018-02-19 18:06:40 +01:00
parent d322a5b3ec
commit 674ceb9c2b

View File

@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchPypi, blessings, mock, nose, pyte, pytest, wcwidth }: { stdenv, buildPythonPackage, fetchPypi, blessings, mock, nose, pyte, wcwidth, typing }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "curtsies"; pname = "curtsies";
@ -8,12 +8,12 @@ buildPythonPackage rec {
sha256 = "89c802ec051d01dec6fc983e9856a3706e4ea8265d2940b1f6d504a9e26ed3a9"; sha256 = "89c802ec051d01dec6fc983e9856a3706e4ea8265d2940b1f6d504a9e26ed3a9";
}; };
propagatedBuildInputs = [ blessings wcwidth pyte ]; propagatedBuildInputs = [ blessings wcwidth typing ];
checkInputs = [ nose mock pytest ]; checkInputs = [ mock pyte nose ];
checkPhase = '' checkPhase = ''
py.test nosetests tests
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {