10 buildPythonPackage rec {
11 pname = "pytest-click";
13 disabled = pythonOlder "3.5";
15 src = fetchFromGitHub {
16 owner = "Stranger6667";
17 repo = "pytest-click";
19 sha256 = "sha256-A/RF+SgPu2yYF3eHEFiZwKJW2VwQ185Ln6S3wn2cS0k=";
22 buildInputs = [ pytest ];
24 propagatedBuildInputs = [
28 checkInputs = [ pytestCheckHook ];
31 description = "pytest plugin for click";
32 homepage = "https://github.com/Stranger6667/pytest-click";
33 changelog = "https://github.com/Stranger6667/pytest-click/releases/tag/v${version}";
34 license = licenses.mit;
35 maintainers = with maintainers; [ costrouc ];