Unverified Commit f5641a02 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #220864 from fabaff/spur-bump

python310Packages.spur: 0.3.22 -> 0.3.23 
parents 334071cb ba0125d9
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -7,16 +7,16 @@

buildPythonPackage rec {
  pname = "spur";
  version = "0.3.22";
  version = "0.3.23";
  format = "setuptools";

  disabled = pythonOlder "3.4";
  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "mwilliamson";
    repo = "spur.py";
    rev = version;
    sha256 = "sha256-YlwezAE7V4ykFsp+bJ2nYRp6HG4I9Bk7Lhq6f1Inn0s=";
    rev = "refs/tags/${version}";
    hash = "sha256-LTkZ1p2P9fsD+gZEQZaCS68Q6nGc4qFGMNtH75gQmXQ=";
  };

  propagatedBuildInputs = [
@@ -33,6 +33,7 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Python module to run commands and manipulate files locally or over SSH";
    homepage = "https://github.com/mwilliamson/spur.py";
    changelog = "https://github.com/mwilliamson/spur.py/blob/0.3.23/CHANGES";
    license = with licenses; [ bsd2 ];
    maintainers = with maintainers; [ fab ];
  };