Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

pythonPackages.curtsies: correct dependencies

(cherry picked from commit 674ceb9c2bc501b1f5155b70f925856245d9b244)

+4 -4
+4 -4
pkgs/development/python-modules/curtsies/default.nix
··· 1 - { stdenv, buildPythonPackage, fetchPypi, blessings, mock, nose, pyte, pytest, wcwidth }: 1 + { stdenv, buildPythonPackage, fetchPypi, blessings, mock, nose, pyte, wcwidth, typing }: 2 2 3 3 buildPythonPackage rec { 4 4 pname = "curtsies"; ··· 8 8 sha256 = "89c802ec051d01dec6fc983e9856a3706e4ea8265d2940b1f6d504a9e26ed3a9"; 9 9 }; 10 10 11 - propagatedBuildInputs = [ blessings wcwidth pyte ]; 11 + propagatedBuildInputs = [ blessings wcwidth typing ]; 12 12 13 - checkInputs = [ nose mock pytest ]; 13 + checkInputs = [ mock pyte nose ]; 14 14 15 15 checkPhase = '' 16 - py.test 16 + nosetests tests 17 17 ''; 18 18 19 19 meta = with stdenv.lib; {