python.pkgs.ovh: 0.4.5 -> 0.4.8

This commit is contained in:
Frederik Rietdijk
2018-02-03 15:14:10 +01:00
parent f875b1083a
commit 0821a22eba
2 changed files with 28 additions and 19 deletions

View File

@@ -0,0 +1,27 @@
{ lib
, buildPythonPackage
, fetchPypi
, requests
, nose
, mock
}:
buildPythonPackage rec {
pname = "ovh";
version = "0.4.8";
# Needs yanc
doCheck = false;
src = fetchPypi {
inherit pname version;
sha256 = "79fa4bdc61b9953af867676a9558d9e792b9fde568c980efe848a40565a217cd";
};
meta = {
description = "Thin wrapper around OVH's APIs";
homepage = http://api.ovh.com/;
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.makefu ];
};
}