pythonPackages.ordered-set: add missing dependency (#46183)
missing dependency for doing tests (pytestrunner) added three months
ago June c0b9308988
.
This commit is contained in:
parent
b8c4f02131
commit
427e4910ec
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user