Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python3Packages.linode-api: 5.0.0 -> 5.7.2

+3 -3
+3 -3
pkgs/development/python-modules/linode-api/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "linode-api"; 12 - version = "5.0.0"; 13 disabled = pythonOlder "3.6"; 14 15 # Sources from Pypi exclude test fixtures 16 src = fetchFromGitHub { 17 owner = "linode"; 18 repo = "python-linode-api"; 19 - rev = version; 20 - sha256 = "0lqi15vks4fxbki1l7n1bfzygjy3w17d9wchjxvp22ijmas44yai"; 21 }; 22 23 propagatedBuildInputs = [ requests ];
··· 9 10 buildPythonPackage rec { 11 pname = "linode-api"; 12 + version = "5.7.2"; 13 disabled = pythonOlder "3.6"; 14 15 # Sources from Pypi exclude test fixtures 16 src = fetchFromGitHub { 17 owner = "linode"; 18 repo = "python-linode-api"; 19 + rev = "refs/tags/v${version}"; 20 + sha256 = "sha256-RU/GyNYV05iYVNanMqKMmoksXWrxTQ2H2XvaIwSSslA="; 21 }; 22 23 propagatedBuildInputs = [ requests ];