Merge pull request #204405 from dotlambda/configargparse-test-yaml

This commit is contained in:
Sandro 2022-12-09 10:21:15 +01:00 committed by GitHub
commit 4a7623dc23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,12 +3,15 @@
, fetchFromGitHub , fetchFromGitHub
, mock , mock
, pytestCheckHook , pytestCheckHook
, pyyaml
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "configargparse"; pname = "configargparse";
version = "1.5.3"; version = "1.5.3";
format = "setuptools";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "bw2"; owner = "bw2";
repo = "ConfigArgParse"; repo = "ConfigArgParse";
@ -19,6 +22,7 @@ buildPythonPackage rec {
checkInputs = [ checkInputs = [
mock mock
pytestCheckHook pytestCheckHook
pyyaml
]; ];
pythonImportsCheck = [ "configargparse" ]; pythonImportsCheck = [ "configargparse" ];