diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2020-11-27 13:33:40 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2020-12-20 22:46:59 -0500 |
commit | e4cc19c85b159a4233fb6dafaffa133b0cb2ece7 (patch) | |
tree | 8ae905554b9207acd8d14338668022f57a0ff70b | |
parent | 2fdb07094228463a127bd87ae1341e51ac89321e (diff) | |
download | guix-e4cc19c85b159a4233fb6dafaffa133b0cb2ece7.tar.gz |
gnu: python-oslo.i18n: Fix indentation.
* gnu/packages/openstack.scm (python-oslo.i18n): Fix indentation.
-rw-r--r-- | gnu/packages/openstack.scm | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/gnu/packages/openstack.scm b/gnu/packages/openstack.scm index 13b92936d0..00c63dd81f 100644 --- a/gnu/packages/openstack.scm +++ b/gnu/packages/openstack.scm @@ -476,27 +476,27 @@ pipeline and used by various modules such as logging.") (name "python-oslo.i18n") (version "3.20.0") (source - (origin - (method url-fetch) - (uri (pypi-uri "oslo.i18n" version)) - (sha256 - (base32 - "0kjcdw4bk3mi4vqmqwhhq053kxbbbj05si6nwxd1pzx33z067ky3")))) + (origin + (method url-fetch) + (uri (pypi-uri "oslo.i18n" version)) + (sha256 + (base32 + "0kjcdw4bk3mi4vqmqwhhq053kxbbbj05si6nwxd1pzx33z067ky3")))) (build-system python-build-system) (propagated-inputs - `(("python-babel" ,python-babel) - ("python-six" ,python-six))) + `(("python-babel" ,python-babel) + ("python-six" ,python-six))) (native-inputs - `(("python-pbr" ,python-pbr) - ;; Tests - ("python-mock" ,python-mock) - ("python-mox3" ,python-mox3) - ("python-oslotest" ,python-oslotest) - ("python-testscenarios" ,python-testscenarios))) + `(("python-pbr" ,python-pbr) + ;; Tests + ("python-mock" ,python-mock) + ("python-mox3" ,python-mox3) + ("python-oslotest" ,python-oslotest) + ("python-testscenarios" ,python-testscenarios))) (home-page "https://launchpad.net/oslo") (synopsis "Oslo internationalization (i18n) library") (description - "The oslo.i18n library contain utilities for working with + "The oslo.i18n library contain utilities for working with internationalization (i18n) features, especially translation for text strings in an application or library.") (license asl2.0))) |