Unverified Commit 58c833e8 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #309921 from fabaff/aiomisc-pytest-bump

python312Packages.aiomisc-pytest: 1.1.2 -> 1.2.1
parents 8b0b7245 81a0bc04
Loading
Loading
Loading
Loading
+18 −26
Original line number Diff line number Diff line
{ lib
, aiomisc
, buildPythonPackage
, fetchPypi
, poetry-core
, pytest
, pythonOlder
, pythonRelaxDepsHook
{
  lib,
  aiomisc,
  buildPythonPackage,
  fetchPypi,
  poetry-core,
  pytest,
  pythonOlder,
  pythonRelaxDepsHook,
}:

buildPythonPackage rec {
  pname = "aiomisc-pytest";
  version = "1.1.2";
  version = "1.2.1";
  pyproject = true;

  disabled = pythonOlder "3.7";
@@ -18,29 +19,20 @@ buildPythonPackage rec {
  src = fetchPypi {
    pname = "aiomisc_pytest";
    inherit version;
    hash = "sha256-Zja0cNFrn6mUFlZOtzAtBJ/Gn27akD59qX6p88ytD6w=";
    hash = "sha256-4mWP77R3CoX+XhoT6BbxQtxpINpdmeozjYUsegNfMyU=";
  };

  nativeBuildInputs = [
    poetry-core
    pythonRelaxDepsHook
  ];
  build-system = [ poetry-core ];

  pythonRelaxDeps = [
    "pytest"
  ];
  nativeBuildInputs = [ pythonRelaxDepsHook ];

  buildInputs = [
    pytest
  ];
  pythonRelaxDeps = [ "pytest" ];

  propagatedBuildInputs = [
    aiomisc
  ];
  buildInputs = [ pytest ];

  pythonImportsCheck = [
    "aiomisc_pytest"
  ];
  dependencies = [ aiomisc ];

  pythonImportsCheck = [ "aiomisc_pytest" ];

  # Module has no tests
  doCheck = false;