python312Packages.pyftpdlib: format with nixfmt
This commit is contained in:
@@ -1,12 +1,13 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, mock
|
||||
, psutil
|
||||
, pyopenssl
|
||||
, pysendfile
|
||||
, pythonOlder
|
||||
, setuptools
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
mock,
|
||||
psutil,
|
||||
pyopenssl,
|
||||
pysendfile,
|
||||
pythonOlder,
|
||||
setuptools,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
@@ -21,18 +22,12 @@ buildPythonPackage rec {
|
||||
hash = "sha256-Mj1MQvFAau203xj69oD2TzLAgP9m9sJgkLpZL1v8Sg8=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
];
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
pysendfile
|
||||
];
|
||||
dependencies = [ pysendfile ];
|
||||
|
||||
passthru.optional-dependencies = {
|
||||
ssl = [
|
||||
pyopenssl
|
||||
];
|
||||
ssl = [ pyopenssl ];
|
||||
};
|
||||
|
||||
nativeCheckInputs = [
|
||||
@@ -44,9 +39,7 @@ buildPythonPackage rec {
|
||||
# on Hydra: https://hydra.nixos.org/build/84374861
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"pyftpdlib"
|
||||
];
|
||||
pythonImportsCheck = [ "pyftpdlib" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Asynchronous FTP server library";
|
||||
|
||||
Reference in New Issue
Block a user