python.pkgs.ordered-set: fix build

This commit is contained in:
Robert Schütz 2019-03-15 22:28:01 +01:00
parent 4c2e0637c7
commit 8c594fc8b3

View File

@ -1,10 +1,10 @@
{ buildPythonPackage, fetchPypi, lib, pytest, pytestrunner }: { buildPythonPackage, fetchPypi, lib, pytest }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "ordered-set"; pname = "ordered-set";
version = "3.1"; version = "3.1";
buildInputs = [ pytest pytestrunner ]; checkInputs = [ pytest ];
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;