1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-28 12:06:38 +03:00
nixpkgs/pkgs/development/python-modules/python-swiftclient/default.nix

35 lines
950 B
Nix
Raw Normal View History

{ lib, buildPythonApplication, fetchPypi, requests, six, pbr, setuptools }:
2018-12-10 08:43:42 +01:00
buildPythonApplication rec {
pname = "python-swiftclient";
version = "3.12.0";
2018-12-10 08:43:42 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "sha256-MTtEShTQ+bYoy/PoxS8sQnFlj56KM9QiKFHC5PD3t6A=";
2018-12-10 08:43:42 +01:00
};
nativeBuildInputs = [ pbr ];
propagatedBuildInputs = [ requests six setuptools ];
2018-12-10 08:43:42 +01:00
# For the tests the following requirements are needed:
# https://github.com/openstack/python-swiftclient/blob/master/test-requirements.txt
#
# The ones missing in nixpkgs (currently) are:
# - hacking
# - keystoneauth
# - oslosphinx
# - stestr
# - reno
# - openstackdocstheme
doCheck = false;
meta = with lib; {
2020-03-31 03:27:58 +00:00
homepage = "https://github.com/openstack/python-swiftclient";
2018-12-10 08:43:42 +01:00
description = "Python bindings to the OpenStack Object Storage API";
license = licenses.asl20;
maintainers = with maintainers; [ c0deaddict SuperSandro2000 ];
2018-12-10 08:43:42 +01:00
};
}