1 { lib, buildPythonPackage, fetchPypi
10 buildPythonPackage rec {
15 inherit pname version;
16 sha256 = "19nzdibjfndzcwvby20p59igqwyzw7skrb45v2mxqsjma5yjv114";
19 propagatedBuildInputs = [ invoke paramiko cryptography ];
20 checkInputs = [ pytest mock pytest-relaxed ];
22 # requires pytest_relaxed, which doesnt have official support for pytest>=5
23 # https://github.com/bitprophet/pytest-relaxed/issues/12
28 pythonImportsCheck = [ "fabric" ];
31 description = "Pythonic remote execution";
32 homepage = "https://www.fabfile.org/";
33 license = licenses.bsd2;
34 maintainers = [ maintainers.costrouc ];