Unverified Commit 37d23f4b authored by Martin Weinelt's avatar Martin Weinelt Committed by GitHub
Browse files

Merge pull request #313628 from mweinelt/python-nixfmt

python3Packages: format with nixfmt
parents eb3e5c5f 42961a65
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -114,3 +114,6 @@ fb0e5be84331188a69b3edd31679ca6576edb75a

# k3s: format with nixfmt-rfc-style
6cfcd3c75428ede517bc6b15a353d704837a2830

# python3Packages: format with nixfmt
59b1aef59071cae6e87859dc65de973d2cc595c0
+5 −4
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, pytest
{
  lib,
  buildPythonPackage,
  fetchPypi,
  pytest,
}:

buildPythonPackage rec {
+10 −11
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, asgiref
, httpx
, pdm-backend
, pytest-asyncio
, pytestCheckHook
{
  lib,
  buildPythonPackage,
  fetchPypi,
  asgiref,
  httpx,
  pdm-backend,
  pytest-asyncio,
  pytestCheckHook,
}:

buildPythonPackage rec {
@@ -18,9 +19,7 @@ buildPythonPackage rec {
    hash = "sha256-UOgaxVqmCfosZm5CuswlxCTIiEzmBy8afpAhFLfuXWM=";
  };

  nativeBuildInputs = [
    pdm-backend
  ];
  nativeBuildInputs = [ pdm-backend ];

  nativeCheckInputs = [
    asgiref
+11 −18
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, six
, pynose
, setuptools
{
  lib,
  buildPythonPackage,
  fetchPypi,
  six,
  pynose,
  setuptools,
}:

buildPythonPackage rec {
@@ -16,21 +17,13 @@ buildPythonPackage rec {
    hash = "sha256-p3MorFXbtXNdqZRBhwJRvv4TX2h6twenoXhWE2OydwQ=";
  };

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

  dependencies = [
    six
  ];
  dependencies = [ six ];

  nativeCheckInputs = [
    pynose
  ];
  nativeCheckInputs = [ pynose ];

  pythonImportsCheck = [
    "aadict"
  ];
  pythonImportsCheck = [ "aadict" ];

  meta = with lib; {
    description = "An auto-attribute dict (and a couple of other useful dict functions)";
+6 −1
Original line number Diff line number Diff line
{ lib, buildPythonPackage, fetchPypi, pillow }:
{
  lib,
  buildPythonPackage,
  fetchPypi,
  pillow,
}:

buildPythonPackage rec {
  pname = "aafigure";
Loading