python3Packages.pytest-unmagic: 1.0.0 -> 1.0.1 (#425845)

This commit is contained in:
jopejoe1 2025-07-21 18:32:28 +02:00 committed by GitHub
commit 5ecd39518b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,20 +3,21 @@
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
gitUpdater,
flit-core,
pytest,
}:
buildPythonPackage rec {
pname = "pytest-unmagic";
version = "1.0.0";
version = "1.0.1";
pyproject = true;
src = fetchFromGitHub {
owner = "dimagi";
repo = "pytest-unmagic";
tag = "v${version}";
hash = "sha256-5WnLjQ0RuwLBIZAbOJoQ0KBEnb7yUWTUFBKy+WgNctQ=";
hash = "sha256-XHeQuMCYHtrNF5+7e/eMzcvYukM+AobHCMRdzL+7KpU=";
};
build-system = [
@ -29,6 +30,8 @@ buildPythonPackage rec {
pythonImportsCheck = [ "unmagic" ];
passthru.updateScript = gitUpdater { rev-prefix = "v"; };
meta = {
description = "Pytest fixtures with conventional import semantics";
homepage = "https://github.com/dimagi/pytest-unmagic";