pythonPackages.ordered-set: add missing dependency (#46183)

missing dependency for doing tests (pytestrunner) added three months
ago June c0b9308988.
This commit is contained in:
Christopher Ostrouchov 2018-09-07 03:26:07 -04:00 committed by xeji
parent b8c4f02131
commit 427e4910ec

View File

@ -1,10 +1,10 @@
{ buildPythonPackage, fetchPypi, lib, pytest }:
{ buildPythonPackage, fetchPypi, lib, pytest, pytestrunner }:
buildPythonPackage rec {
pname = "ordered-set";
version = "3.0.1";
buildInputs = [ pytest ];
buildInputs = [ pytest pytestrunner ];
src = fetchPypi {
inherit pname version;
@ -21,6 +21,3 @@ buildPythonPackage rec {
maintainers = [ lib.maintainers.MostAwesomeDude ];
};
}