diff options
| author | Martin Weinelt <mweinelt@users.noreply.github.com> | 2021-02-12 15:19:49 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-12 15:19:49 +0100 |
| commit | 181d09ca0d75c969caa385ea62d4e4ea6b80e2cc (patch) | |
| tree | 74450833b0cfaf0f62408e5d84e40f56105378f3 /pkgs/development/python-modules | |
| parent | 9675dbd6a8310838fcfe570536d3a4d84db2a5d9 (diff) | |
| parent | 979a6b6c97080ae97adbf1ad946ca98d66f523c7 (diff) | |
Merge pull request #112904 from drewrisinger/dr-pr-update-pytest-click
python3Packages.pytest-click: 0.3 -> 1.0.2
Diffstat (limited to 'pkgs/development/python-modules')
| -rw-r--r-- | pkgs/development/python-modules/pytest-click/default.nix | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/pytest-click/default.nix b/pkgs/development/python-modules/pytest-click/default.nix index e271373b73ef..0c23a907cbae 100644 --- a/pkgs/development/python-modules/pytest-click/default.nix +++ b/pkgs/development/python-modules/pytest-click/default.nix @@ -1,40 +1,36 @@ { lib , buildPythonPackage , fetchFromGitHub +, pythonOlder , pytest , click -, pytestcov -, isPy27 -, mock +, pytestCheckHook }: buildPythonPackage rec { pname = "pytest-click"; - version = "0.3"; + version = "1.0.2"; + disabled = pythonOlder "3.5"; src = fetchFromGitHub { owner = "Stranger6667"; repo = "pytest-click"; - rev = version; - sha256 = "1cd15anw8d4rq6qs03j6ag38199rqw7vp0w0w0fm41mvdzr0lwvz"; + rev = "v${version}"; + sha256 = "197nvlqlyfrqpy5lrkmfh1ywpr6j9zipxl9d7syg2a2n7jz3a8rj"; }; - postConfigure = '' - substituteInPlace setup.py \ - --replace "mock==1.0.1" "mock" - ''; - propagatedBuildInputs = [ pytest click ]; - checkInputs = [ pytestcov ] ++ lib.optionals isPy27 [ mock ]; + checkInputs = [ 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 = [ maintainers.costrouc ]; + maintainers = with maintainers; [ costrouc ]; }; } |
