9 buildPythonPackage rec {
12 format = "setuptools";
14 disabled = pythonOlder "3.7";
16 src = fetchFromGitHub {
17 owner = "mwilliamson";
19 rev = "refs/tags/${version}";
20 hash = "sha256-LTkZ1p2P9fsD+gZEQZaCS68Q6nGc4qFGMNtH75gQmXQ=";
23 propagatedBuildInputs = [ paramiko ];
25 # Tests require a running SSH server
28 pythonImportsCheck = [ "spur" ];
31 description = "Python module to run commands and manipulate files locally or over SSH";
32 homepage = "https://github.com/mwilliamson/spur.py";
33 changelog = "https://github.com/mwilliamson/spur.py/blob/0.3.23/CHANGES";
34 license = with licenses; [ bsd2 ];
35 maintainers = with maintainers; [ fab ];