forked from mirrors/nixpkgs
python3Packages.upcloud-api: init at 2.0.0
This commit is contained in:
parent
4ba70da807
commit
988677d741
37
pkgs/development/python-modules/upcloud-api/default.nix
Normal file
37
pkgs/development/python-modules/upcloud-api/default.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, requests
|
||||
, pytestCheckHook
|
||||
, responses
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "upcloud-api";
|
||||
version = "2.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "UpCloudLtd";
|
||||
repo = "upcloud-python-api";
|
||||
rev = "v${version}";
|
||||
sha256 = "1kkgrn97pw4k49ys97hjrvh2j8y2p2r9970v9csgrk5wci4562wm";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
requests
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
responses
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "upcloud_api" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "UpCloud API Client";
|
||||
homepage = "https://github.com/UpCloudLtd/upcloud-python-api";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
|
@ -8851,6 +8851,8 @@ in {
|
|||
|
||||
upb-lib = callPackage ../development/python-modules/upb-lib { };
|
||||
|
||||
upcloud-api = callPackage ../development/python-modules/upcloud-api { };
|
||||
|
||||
update_checker = callPackage ../development/python-modules/update_checker { };
|
||||
|
||||
update-copyright = callPackage ../development/python-modules/update-copyright { };
|
||||
|
|
Loading…
Reference in a new issue