Unverified Commit 3f8323b3 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.busypie: 0.5.1 -> 0.6.1 (#495477)

parents 16f97584 efbb6d08
Loading
Loading
Loading
Loading
+7 −8
Original line number Diff line number Diff line
@@ -6,26 +6,25 @@
  pytest-timeout,
  pytestCheckHook,
  setuptools,
  setuptools-scm,
}:

buildPythonPackage (finalAttrs: {
  pname = "busypie";
  version = "0.5.1";
  version = "0.6.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "rockem";
    repo = "busypie";
    tag = "v${finalAttrs.version}";
    hash = "sha256-dw0Sc/a27/EYY7LVMQqDkYuxrUFYK+N6XLk6A7A/eS8=";
    hash = "sha256-MIwME5QM0BDpYP9frraJP/1v0lTZpPzgbqAawpGAcU0=";
  };

  postPatch = ''
    substituteInPlace setup.py \
      --replace-fail "pytest-runner" ""
  '';

  build-system = [ setuptools ];
  build-system = [
    setuptools
    setuptools-scm
  ];

  nativeCheckInputs = [
    pytest-asyncio