aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/Fabric/default.nix
blob: 1025ed6a05ee001295c1253fe4dc26919ce28fc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ lib, buildPythonPackage, fetchPypi
, cryptography
, invoke
, mock
, paramiko
, pytest
, pytest-relaxed
}:

buildPythonPackage rec {
  pname = "fabric";
  version = "2.5.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "19nzdibjfndzcwvby20p59igqwyzw7skrb45v2mxqsjma5yjv114";
  };

  propagatedBuildInputs = [ invoke paramiko cryptography ];
  checkInputs = [ pytest mock pytest-relaxed ];

  # requires pytest_relaxed, which doesnt have official support for pytest>=5
  # https://github.com/bitprophet/pytest-relaxed/issues/12
  doCheck = false;
  checkPhase = ''
    pytest tests
  '';
  pythonImportsCheck = [ "fabric" ];

  meta = with lib; {
    description = "Pythonic remote execution";
    homepage    = "https://www.fabfile.org/";
    license     = licenses.bsd2;
    maintainers = [ maintainers.costrouc ];
  };
}