11 buildPythonPackage rec {
12 pname = "pytest-click";
14 format = "setuptools";
15 disabled = pythonOlder "3.5";
17 src = fetchFromGitHub {
18 owner = "Stranger6667";
19 repo = "pytest-click";
21 hash = "sha256-A/RF+SgPu2yYF3eHEFiZwKJW2VwQ185Ln6S3wn2cS0k=";
24 buildInputs = [ pytest ];
26 propagatedBuildInputs = [ click ];
28 nativeCheckInputs = [ 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;