summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-openstackclient
diff options
context:
space:
mode:
authorbolives-hax <125610892+bolives-hax@users.noreply.github.com>2024-06-25 00:04:28 +0200
committerGitHub <noreply@github.com>2024-06-25 00:04:28 +0200
commit50d6aae3fe0d07170bf93a2bf08b130c8348051b (patch)
tree11693e06a116784760114a519b4fe9f8a1ddfc34 /pkgs/development/python-modules/python-openstackclient
parent5a2f055ee90f722c0830c5166f10880c5b20b017 (diff)
parent225f8227afff0d8122faedc2d58bff2892a083e0 (diff)
Merge branch 'NixOS:master' into add-rutorrent-service
Diffstat (limited to 'pkgs/development/python-modules/python-openstackclient')
-rw-r--r--pkgs/development/python-modules/python-openstackclient/default.nix36
1 files changed, 20 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/python-openstackclient/default.nix b/pkgs/development/python-modules/python-openstackclient/default.nix
index ef8c7cb59fae..fc48197864ab 100644
--- a/pkgs/development/python-modules/python-openstackclient/default.nix
+++ b/pkgs/development/python-modules/python-openstackclient/default.nix
@@ -1,33 +1,36 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, ddt
-, installShellFiles
-, openstackdocstheme
-, osc-lib
-, pbr
-, python-cinderclient
-, python-keystoneclient
-, python-novaclient
-, requests-mock
-, sphinx
-, stestr
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ ddt,
+ installShellFiles,
+ openstackdocstheme,
+ osc-lib,
+ pbr,
+ python-cinderclient,
+ python-keystoneclient,
+ python-novaclient,
+ requests-mock,
+ sphinx,
+ sphinxcontrib-apidoc,
+ stestr,
}:
buildPythonPackage rec {
pname = "python-openstackclient";
- version = "6.5.0";
+ version = "6.6.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
- hash = "sha256-EvwZNH9rGb/iw28Rx6GEH0FaLufxi5WUE8ISGZe4SVE=";
+ hash = "sha256-u+8e00gpxBBSsuyiZIDinKH3K+BY0UMNpTQexExPKVw=";
};
nativeBuildInputs = [
installShellFiles
openstackdocstheme
sphinx
+ sphinxcontrib-apidoc
];
propagatedBuildInputs = [
@@ -57,6 +60,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "OpenStack Command-line Client";
+ mainProgram = "openstack";
homepage = "https://github.com/openstack/python-openstackclient";
license = licenses.asl20;
maintainers = teams.openstack.members;