Unverified Commit 46d04591 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python3Packages.pytest-unordered: 0.6.1 -> 0.7.0 (#462495)

parents 85ac135c 858782ee
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -3,21 +3,20 @@
  buildPythonPackage,
  fetchFromGitHub,
  setuptools,
  mock,
  pytest,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "pytest-unordered";
  version = "0.6.1";
  version = "0.7.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "utapyngo";
    repo = "pytest-unordered";
    tag = "v${version}";
    hash = "sha256-nANsX28+G8jcSe8X0dB6Tu3HYHd9ebGkh1AUx8Xq8HM=";
    hash = "sha256-JmP2zStxIt+u7sgfRKlnBwM5q5R0GfXtiE7ZgHKtg94=";
  };

  build-system = [ setuptools ];
@@ -25,7 +24,6 @@ buildPythonPackage rec {
  buildInputs = [ pytest ];

  nativeCheckInputs = [
    mock
    pytestCheckHook
  ];