Commit bd90e5fd authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.pyipp: format with nixfmt

parent 46faca71
Loading
Loading
Loading
Loading
+22 −27
Original line number Diff line number Diff line
{ lib
, aiohttp
, aresponses
, async-timeout
, awesomeversion
, backoff
, buildPythonPackage
, deepmerge
, fetchFromGitHub
, poetry-core
, pytest-asyncio
, pytestCheckHook
, pythonOlder
, yarl
{
  lib,
  aiohttp,
  aresponses,
  async-timeout,
  awesomeversion,
  backoff,
  buildPythonPackage,
  deepmerge,
  fetchFromGitHub,
  poetry-core,
  pytest-asyncio,
  pytestCheckHook,
  pythonOlder,
  yarl,
}:

buildPythonPackage rec {
@@ -34,9 +35,7 @@ buildPythonPackage rec {
      --replace-fail "--cov" ""
  '';

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

  dependencies = [
    aiohttp
@@ -44,9 +43,7 @@ buildPythonPackage rec {
    backoff
    deepmerge
    yarl
  ] ++ lib.optionals (pythonOlder "3.11") [
    async-timeout
  ];
  ] ++ lib.optionals (pythonOlder "3.11") [ async-timeout ];

  nativeCheckInputs = [
    aresponses
@@ -56,9 +53,7 @@ buildPythonPackage rec {

  __darwinAllowLocalNetworking = true;

  pythonImportsCheck = [
    "pyipp"
  ];
  pythonImportsCheck = [ "pyipp" ];

  meta = with lib; {
    changelog = "https://github.com/ctalkington/python-ipp/releases/tag/${version}";