Unverified Commit 59b1aef5 authored by Martin Weinelt's avatar Martin Weinelt
Browse files

python3Packages: format with nixfmt

parent 691216ec
Loading
Loading
Loading
Loading
+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";
+25 −28
Original line number Diff line number Diff line
{ lib
, stdenv
, arc4
, asn1crypto
, asn1tools
, asyauth
, asysocks
, buildPythonPackage
, cargo
, colorama
, fetchFromGitHub
, iconv
, minikerberos
, pillow
, pyperclip
, pythonOlder
, rustPlatform
, rustc
, setuptools-rust
, tqdm
, unicrypto
, winsspi
{
  lib,
  stdenv,
  arc4,
  asn1crypto,
  asn1tools,
  asyauth,
  asysocks,
  buildPythonPackage,
  cargo,
  colorama,
  fetchFromGitHub,
  iconv,
  minikerberos,
  pillow,
  pyperclip,
  pythonOlder,
  rustPlatform,
  rustc,
  setuptools-rust,
  tqdm,
  unicrypto,
  winsspi,
}:

buildPythonPackage rec {
@@ -65,16 +66,12 @@ buildPythonPackage rec {
    tqdm
    unicrypto
    winsspi
  ] ++ lib.optionals (stdenv.isDarwin) [
    iconv
  ];
  ] ++ lib.optionals (stdenv.isDarwin) [ iconv ];

  # Module doesn't have tests
  doCheck = false;

  pythonImportsCheck = [
    "aardwolf"
  ];
  pythonImportsCheck = [ "aardwolf" ];

  meta = with lib; {
    description = "Asynchronous RDP protocol implementation";
Loading