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