diff --git a/pkgs/applications/version-management/pass-git-helper/default.nix b/pkgs/applications/version-management/pass-git-helper/default.nix index da2f159601121ed..590d25428a80d8a 100644 --- a/pkgs/applications/version-management/pass-git-helper/default.nix +++ b/pkgs/applications/version-management/pass-git-helper/default.nix @@ -1,21 +1,30 @@ -{ lib, buildPythonApplication, fetchFromGitHub, pyxdg, pytest, pytest-mock }: +{ lib, buildPythonApplication, fetchFromGitHub, pyxdg, pytestCheckHook, pytest-cov-stub, pytest-mock, setuptools }: buildPythonApplication rec { pname = "pass-git-helper"; - version = "2.0.0"; + version = "3.0.0"; + pyproject = true; src = fetchFromGitHub { owner = "languitar"; repo = "pass-git-helper"; rev = "refs/tags/v${version}"; - sha256 = "sha256-IpMaCG6kPNrWtcl10Lh7A3PyIF4Mk0t2wLYON+zMLsE="; + sha256 = "sha256-DLH3l4wYfBlrc49swLgyHeZXebJ5JSzU7cHjD7Hmw0g="; }; - propagatedBuildInputs = [ pyxdg ]; - nativeCheckInputs = [ pytest pytest-mock ]; - preCheck = '' - export HOME=$(mktemp -d) - ''; + build-system = [ setuptools ]; + + dependencies = [ pyxdg ]; + + env.HOME = "$TMPDIR"; + + pythonImportsCheck = [ "passgithelper" ]; + + nativeCheckInputs = [ + pytestCheckHook + pytest-cov-stub + pytest-mock + ]; meta = with lib; { homepage = "https://github.com/languitar/pass-git-helper";