pythonPackages.packet-python: enable tests

This commit is contained in:
Manuel Mendez 2019-05-30 17:24:38 -04:00
parent 70a6962d06
commit a02dfde074

View File

@ -5,7 +5,9 @@
, python
# For tests/setup.py
, pytest
, pytestrunner
, requests-mock
}:
buildPythonPackage rec {
@ -17,14 +19,16 @@ buildPythonPackage rec {
};
nativeBuildInputs = [ pytestrunner ];
propagatedBuildInputs = [ requests ];
checkInputs = [
pytest
pytestrunner
requests-mock
];
checkPhase = ''
${python.interpreter} -m unittest discover -s test
${python.interpreter} setup.py test
'';
# Not all test files are included in archive
doCheck = false;
meta = {
description = "A Python client for the Packet API.";
homepage = "https://github.com/packethost/packet-python";