10 buildPythonPackage rec {
13 disabled = pythonOlder "3.6";
15 # Sources from Pypi exclude test fixtures
16 src = fetchFromGitHub {
18 repo = "python-linode-api";
19 rev = "refs/tags/v${version}";
20 sha256 = "sha256-RU/GyNYV05iYVNanMqKMmoksXWrxTQ2H2XvaIwSSslA=";
23 propagatedBuildInputs = [ requests ];
30 pythonImportsCheck = [ "linode_api4" ];
33 description = "Python library for the Linode API v4";
34 homepage = "https://github.com/linode/python-linode-api";
35 license = licenses.bsd3;
36 maintainers = with maintainers; [ glenns ];