mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 01:04:25 +00:00
pythonPackages.curtsies: correct dependencies
This commit is contained in:
parent
d322a5b3ec
commit
674ceb9c2b
@ -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";
|
||||
@ -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; {
|
||||
|
Loading…
Reference in New Issue
Block a user