From 8c594fc8b36c19df04cccc0b38c7edb648f93201 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Fri, 15 Mar 2019 22:28:01 +0100 Subject: [PATCH] python.pkgs.ordered-set: fix build --- pkgs/development/python-modules/ordered-set/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ordered-set/default.nix b/pkgs/development/python-modules/ordered-set/default.nix index dc86068becb..d26459acf70 100644 --- a/pkgs/development/python-modules/ordered-set/default.nix +++ b/pkgs/development/python-modules/ordered-set/default.nix @@ -1,10 +1,10 @@ -{ buildPythonPackage, fetchPypi, lib, pytest, pytestrunner }: +{ buildPythonPackage, fetchPypi, lib, pytest }: buildPythonPackage rec { pname = "ordered-set"; version = "3.1"; - buildInputs = [ pytest pytestrunner ]; + checkInputs = [ pytest ]; src = fetchPypi { inherit pname version;