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

authored by jopejoe1 and committed by GitHub 5ecd3951 1956a79c

+5 -2
+5 -2
pkgs/development/python-modules/pytest-unmagic/default.nix
··· 3 3 buildPythonPackage, 4 4 fetchFromGitHub, 5 5 pytestCheckHook, 6 + gitUpdater, 6 7 flit-core, 7 8 pytest, 8 9 }: 9 10 10 11 buildPythonPackage rec { 11 12 pname = "pytest-unmagic"; 12 - version = "1.0.0"; 13 + version = "1.0.1"; 13 14 pyproject = true; 14 15 15 16 src = fetchFromGitHub { 16 17 owner = "dimagi"; 17 18 repo = "pytest-unmagic"; 18 19 tag = "v${version}"; 19 - hash = "sha256-5WnLjQ0RuwLBIZAbOJoQ0KBEnb7yUWTUFBKy+WgNctQ="; 20 + hash = "sha256-XHeQuMCYHtrNF5+7e/eMzcvYukM+AobHCMRdzL+7KpU="; 20 21 }; 21 22 22 23 build-system = [ ··· 28 29 nativeCheckInputs = [ pytestCheckHook ]; 29 30 30 31 pythonImportsCheck = [ "unmagic" ]; 32 + 33 + passthru.updateScript = gitUpdater { rev-prefix = "v"; }; 31 34 32 35 meta = { 33 36 description = "Pytest fixtures with conventional import semantics";