python3Packages.ConfigArgParse: enable tests

This commit is contained in:
Fabian Affolter 2021-02-16 08:09:34 +01:00
parent d1960be1bd
commit d134462b74

View file

@ -1,20 +1,31 @@
{ lib, buildPythonPackage, fetchPypi }:
{ lib
, buildPythonPackage
, fetchFromGitHub
, mock
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "ConfigArgParse";
version = "1.3";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-BCi5datsSLsQHMtzLhtcthYpbigmjgMqqAbzK2R6HME=";
src = fetchFromGitHub {
owner = "bw2";
repo = pname;
rev = version;
sha256 = "147x781lgahn9r3gbhayhx1pf0iysf7q1hnr3kypy3p2k9v7a9mh";
};
# no tests in tarball
doCheck = false;
checkInputs = [
mock
pytestCheckHook
];
pythonImportsCheck = [ "configargparse" ];
meta = with lib; {
description = "A drop-in replacement for argparse";
homepage = "https://github.com/zorro3/ConfigArgParse";
homepage = "https://github.com/bw2/ConfigArgParse";
license = licenses.mit;
maintainers = [ maintainers.willibutz ];
};