depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-click/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

37 lines
820 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
pytest,
click,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pytest-click";
version = "1.1.0";
format = "setuptools";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
owner = "Stranger6667";
repo = "pytest-click";
rev = "v${version}";
hash = "sha256-A/RF+SgPu2yYF3eHEFiZwKJW2VwQ185Ln6S3wn2cS0k=";
};
buildInputs = [ pytest ];
propagatedBuildInputs = [ click ];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "pytest plugin for click";
homepage = "https://github.com/Stranger6667/pytest-click";
changelog = "https://github.com/Stranger6667/pytest-click/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}