mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
python312Packages.digital-ocean: format with nixfmt
This commit is contained in:
parent
7fd404603e
commit
b416c3227c
1 changed files with 16 additions and 14 deletions
|
@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue