diff --git a/pkgs/development/python-modules/linode-api/default.nix b/pkgs/development/python-modules/linode-api/default.nix index 86114e43b097..a32ed18f7194 100644 --- a/pkgs/development/python-modules/linode-api/default.nix +++ b/pkgs/development/python-modules/linode-api/default.nix @@ -14,22 +14,22 @@ buildPythonPackage rec { pname = "linode-api"; - version = "5.25.0"; + version = "5.26.0"; pyproject = true; - disabled = pythonOlder "3.6"; + disabled = pythonOlder "3.9"; # Sources from Pypi exclude test fixtures src = fetchFromGitHub { owner = "linode"; repo = "python-linode-api"; tag = "v${version}"; - hash = "sha256-rEBMZft4o7R2e0N7x1ZEaCisRmhKggMbZWdtDvraoD0="; + hash = "sha256-+Co8c0JJKzA2IBj/RUrY+iNTCI0nCvqQUW1F7Crd2mc="; }; - nativeBuildInputs = [ setuptools ]; + build-system = [ setuptools ]; - propagatedBuildInputs = [ + dependencies = [ requests polling deprecated @@ -48,10 +48,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "linode_api4" ]; - meta = with lib; { + meta = { description = "Python library for the Linode API v4"; homepage = "https://github.com/linode/python-linode-api"; - license = licenses.bsd3; - maintainers = with maintainers; [ glenns ]; + license = lib.licenses.bsd3; + maintainers = with lib.maintainers; [ glenns ]; }; }