ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pytest-click / default.nix
blob82e6409c9b7f3a7139b3f3e38207d7127c6d574f
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pythonOlder
5 , pytest
6 , click
7 , pytestCheckHook
8 }:
10 buildPythonPackage rec {
11   pname = "pytest-click";
12   version = "1.1.0";
13   disabled = pythonOlder "3.5";
15   src = fetchFromGitHub {
16     owner = "Stranger6667";
17     repo = "pytest-click";
18     rev = "v${version}";
19     sha256 = "sha256-A/RF+SgPu2yYF3eHEFiZwKJW2VwQ185Ln6S3wn2cS0k=";
20   };
22   buildInputs = [ pytest ];
24   propagatedBuildInputs = [
25     click
26   ];
28   checkInputs = [ pytestCheckHook ];
30   meta = with lib; {
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 ];
36   };