pythonPackages.ordered-set: add missing dependency (#46183)
missing dependency for doing tests (pytestrunner) added three months ago June https://github.com/LuminosoInsight/ordered-set/commit/c0b9308988a0c5953d98aecef63bb61f3a758609.
This commit is contained in:
committed by
xeji
parent
b8c4f02131
commit
427e4910ec
@@ -1,10 +1,10 @@
|
|||||||
{ buildPythonPackage, fetchPypi, lib, pytest }:
|
{ buildPythonPackage, fetchPypi, lib, pytest, pytestrunner }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "ordered-set";
|
pname = "ordered-set";
|
||||||
version = "3.0.1";
|
version = "3.0.1";
|
||||||
|
|
||||||
buildInputs = [ pytest ];
|
buildInputs = [ pytest pytestrunner ];
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
@@ -21,6 +21,3 @@ buildPythonPackage rec {
|
|||||||
maintainers = [ lib.maintainers.MostAwesomeDude ];
|
maintainers = [ lib.maintainers.MostAwesomeDude ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user