fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
58 lines
1.3 KiB
Nix
58 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
cryptography,
|
|
decorator,
|
|
invoke,
|
|
mock,
|
|
paramiko,
|
|
pytestCheckHook,
|
|
pytest-relaxed,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "fabric";
|
|
version = "3.2.2";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-h4PKQuOwB28IsmkBqsa52bHxnEEAdOesz6uQLBhP9KM=";
|
|
};
|
|
|
|
# only relevant to python < 3.4
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace ', "pathlib2"' ' '
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
invoke
|
|
paramiko
|
|
cryptography
|
|
decorator
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytest-relaxed
|
|
mock
|
|
];
|
|
|
|
# ==================================== ERRORS ====================================
|
|
# ________________________ ERROR collecting test session _________________________
|
|
# Direct construction of SpecModule has been deprecated, please use SpecModule.from_parent
|
|
# See https://docs.pytest.org/en/stable/deprecations.html#node-construction-changed-to-node-from-parent for more details.
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "fabric" ];
|
|
|
|
meta = with lib; {
|
|
description = "Pythonic remote execution";
|
|
mainProgram = "fab";
|
|
homepage = "https://www.fabfile.org/";
|
|
license = licenses.bsd2;
|
|
maintainers = [ ];
|
|
};
|
|
}
|