python312Packages.digital-ocean: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-12 18:35:52 +02:00
parent 7fd404603e
commit b416c3227c

View File

@ -1,12 +1,13 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, jsonpickle
, pytestCheckHook
, pythonOlder
, requests
, responses
, setuptools
{
lib,
buildPythonPackage,
fetchFromGitHub,
jsonpickle,
pytestCheckHook,
pythonOlder,
requests,
responses,
setuptools,
}:
buildPythonPackage rec {
@ -23,9 +24,7 @@ buildPythonPackage rec {
hash = "sha256-CIYW6vl+IOO94VyfgTjJ3T13uGtz4BdKyVmE44maoLA=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
jsonpickle
@ -42,7 +41,7 @@ buildPythonPackage rec {
'';
# Test tries to access the network
disabledTests = ["TestFirewall"];
disabledTests = [ "TestFirewall" ];
pythonImportsCheck = [ "digitalocean" ];
@ -51,6 +50,9 @@ buildPythonPackage rec {
homepage = "https://github.com/koalalorenzo/python-digitalocean";
changelog = "https://github.com/koalalorenzo/python-digitalocean/releases/tag/v${version}";
license = with licenses; [ lgpl3Only ];
maintainers = with maintainers; [ kiwi teh ];
maintainers = with maintainers; [
kiwi
teh
];
};
}