cloud-init: remove unused input, cleanup

This commit is contained in:
Sandro Jäckel 2021-03-02 16:53:19 +01:00
parent 0ecb16a759
commit e1da8ae536
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -8,7 +8,6 @@
, requests , requests
, jsonschema , jsonschema
, jsonpatch , jsonpatch
, pytest
, httpretty , httpretty
, dmidecode , dmidecode
, pytestCheckHook , pytestCheckHook
@ -17,11 +16,9 @@
, openssh , openssh
}: }:
let version = "20.3"; buildPythonApplication rec {
in buildPythonApplication {
pname = "cloud-init"; pname = "cloud-init";
inherit version; version = "20.3";
namePrefix = ""; namePrefix = "";
src = fetchFromGitHub { src = fetchFromGitHub {
@ -81,10 +78,10 @@ in buildPythonApplication {
export TMPDIR=/tmp export TMPDIR=/tmp
''; '';
meta = { meta = with lib; {
homepage = "https://cloudinit.readthedocs.org"; homepage = "https://cloudinit.readthedocs.org";
description = "Provides configuration and customization of cloud instance"; description = "Provides configuration and customization of cloud instance";
maintainers = [ lib.maintainers.madjar lib.maintainers.phile314 ]; maintainers = with maintainers; [ madjar phile314 ];
platforms = lib.platforms.all; platforms = platforms.all;
}; };
} }