Skip to content

Commit

Permalink
pythonPackages.curtsies: correct dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Schütz committed Feb 22, 2018
1 parent d322a5b commit 674ceb9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkgs/development/python-modules/curtsies/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, buildPythonPackage, fetchPypi, blessings, mock, nose, pyte, pytest, wcwidth }:
{ stdenv, buildPythonPackage, fetchPypi, blessings, mock, nose, pyte, wcwidth, typing }:

buildPythonPackage rec {
pname = "curtsies";
Expand All @@ -8,12 +8,12 @@ buildPythonPackage rec {
sha256 = "89c802ec051d01dec6fc983e9856a3706e4ea8265d2940b1f6d504a9e26ed3a9";
};

propagatedBuildInputs = [ blessings wcwidth pyte ];
propagatedBuildInputs = [ blessings wcwidth typing ];

checkInputs = [ nose mock pytest ];
checkInputs = [ mock pyte nose ];

checkPhase = ''
py.test
nosetests tests
'';

meta = with stdenv.lib; {
Expand Down

0 comments on commit 674ceb9

Please sign in to comment.