Unverified Commit 5ecd3951 authored by jopejoe1's avatar jopejoe1 Committed by GitHub
Browse files

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

parents 1956a79c cf0e4911
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -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";