evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / python-modules / spur / default.nix
blob6762556268fded7e2119f1a601ee01945e1367e5
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   paramiko,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "spur";
11   version = "0.3.23";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchFromGitHub {
17     owner = "mwilliamson";
18     repo = "spur.py";
19     rev = "refs/tags/${version}";
20     hash = "sha256-LTkZ1p2P9fsD+gZEQZaCS68Q6nGc4qFGMNtH75gQmXQ=";
21   };
23   propagatedBuildInputs = [ paramiko ];
25   # Tests require a running SSH server
26   doCheck = false;
28   pythonImportsCheck = [ "spur" ];
30   meta = with lib; {
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 ];
36   };