3
0
Fork 0
forked from mirrors/nixpkgs

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 {
pname = "ordered-set";
version = "3.1";
buildInputs = [ pytest pytestrunner ];
checkInputs = [ pytest ];
src = fetchPypi {
inherit pname version;