Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / spur / default.nix
blob4b4fe911817e190257db20258b35e360a8a2d546
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , paramiko
5 , pythonOlder
6 }:
8 buildPythonPackage rec {
9   pname = "spur";
10   version = "0.3.23";
11   format = "setuptools";
13   disabled = pythonOlder "3.7";
15   src = fetchFromGitHub {
16     owner = "mwilliamson";
17     repo = "spur.py";
18     rev = "refs/tags/${version}";
19     hash = "sha256-LTkZ1p2P9fsD+gZEQZaCS68Q6nGc4qFGMNtH75gQmXQ=";
20   };
22   propagatedBuildInputs = [
23     paramiko
24   ];
26   # Tests require a running SSH server
27   doCheck = false;
29   pythonImportsCheck = [
30     "spur"
31   ];
33   meta = with lib; {
34     description = "Python module to run commands and manipulate files locally or over SSH";
35     homepage = "https://github.com/mwilliamson/spur.py";
36     changelog = "https://github.com/mwilliamson/spur.py/blob/0.3.23/CHANGES";
37     license = with licenses; [ bsd2 ];
38     maintainers = with maintainers; [ fab ];
39   };