diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2020-11-27 14:00:33 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2020-12-20 22:46:59 -0500 |
commit | 66cb42106d8eda6144ed378bb81c95c31bcce92b (patch) | |
tree | 9ff56866bedae6c3e3f9da68261c764861251a7e | |
parent | e4cc19c85b159a4233fb6dafaffa133b0cb2ece7 (diff) | |
download | guix-66cb42106d8eda6144ed378bb81c95c31bcce92b.tar.gz |
gnu: python-oslo.config: Fix indentation.
* gnu/packages/openstack.scm: Prettify the section header and fix the indentation of the package.
-rw-r--r-- | gnu/packages/openstack.scm | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm index 00c63dd81f..da40ef27b5 100644 --- a/gnu/packages/openstack.scm +++ b/gnu/packages/openstack.scm @@ -390,7 +390,11 @@ extensions.") common features used in Tempest.") (license asl2.0))) -;; Packages from the Oslo library + +;;; +;;; Packages from the Oslo library +;;; + (define-public python-oslo.config (package (name "python-oslo.config") @@ -400,8 +404,8 @@ common features used in Tempest.") (method url-fetch) (uri (pypi-uri "oslo.config" version)) (sha256 - (base32 - "0ymf7jxbq29fifyvkwhfiys1qvljqfxdw8ajwzwaf3yiqidgpxqd")))) + (base32 + "0ymf7jxbq29fifyvkwhfiys1qvljqfxdw8ajwzwaf3yiqidgpxqd")))) (build-system python-build-system) (propagated-inputs `(("python-debtcollector" ,python-debtcollector) @@ -426,7 +430,7 @@ common features used in Tempest.") (home-page "https://launchpad.net/oslo") (synopsis "Oslo Configuration API") (description - "The Oslo configuration API supports parsing command line arguments and + "The Oslo configuration API supports parsing command line arguments and .ini style configuration files.") (license asl2.0))) |