Merge pull request #220864 from fabaff/spur-bump

python310Packages.spur: 0.3.22 -> 0.3.23

authored by Fabian Affolter and committed by GitHub f5641a02 334071cb

+5 -4
+5 -4
pkgs/development/python-modules/spur/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "spur"; 10 - version = "0.3.22"; 10 + version = "0.3.23"; 11 11 format = "setuptools"; 12 12 13 - disabled = pythonOlder "3.4"; 13 + disabled = pythonOlder "3.7"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "mwilliamson"; 17 17 repo = "spur.py"; 18 - rev = version; 19 - sha256 = "sha256-YlwezAE7V4ykFsp+bJ2nYRp6HG4I9Bk7Lhq6f1Inn0s="; 18 + rev = "refs/tags/${version}"; 19 + hash = "sha256-LTkZ1p2P9fsD+gZEQZaCS68Q6nGc4qFGMNtH75gQmXQ="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [ ··· 33 33 meta = with lib; { 34 34 description = "Python module to run commands and manipulate files locally or over SSH"; 35 35 homepage = "https://github.com/mwilliamson/spur.py"; 36 + changelog = "https://github.com/mwilliamson/spur.py/blob/0.3.23/CHANGES"; 36 37 license = with licenses; [ bsd2 ]; 37 38 maintainers = with maintainers; [ fab ]; 38 39 };