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