python3Packages.yamlloader: fix build, add missing test dep

This commit is contained in:
Jonathan Ringer
2021-04-20 22:19:08 -07:00
committed by Jonathan Ringer
parent 99c7bab106
commit f25190d7f2
@@ -1,5 +1,5 @@
{ lib, buildPythonPackage, fetchPypi { lib, buildPythonPackage, fetchPypi
, pytest, pyyaml , pytest, pyyaml, hypothesis
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@@ -16,6 +16,7 @@ buildPythonPackage rec {
]; ];
checkInputs = [ checkInputs = [
hypothesis
pytest pytest
]; ];