3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/Fabric/default.nix

46 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
2019-08-21 00:06:15 +01:00
, cryptography
, invoke
2019-08-21 00:06:15 +01:00
, mock
, paramiko
, pytestCheckHook
, pytest-relaxed
}:
buildPythonPackage rec {
pname = "fabric";
2021-03-24 09:28:11 +00:00
version = "2.6.0";
src = fetchPypi {
inherit pname version;
2021-03-24 09:28:11 +00:00
sha256 = "47f184b070272796fd2f9f0436799e18f2ccba4ee8ee587796fca192acd46cd2";
};
2021-03-24 18:16:05 +00:00
# only relevant to python < 3.4
postPatch = ''
substituteInPlace setup.py \
--replace ', "pathlib2"' ' '
'';
propagatedBuildInputs = [ invoke paramiko cryptography ];
checkInputs = [ 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.
2020-08-16 23:44:02 +01:00
doCheck = false;
2020-08-16 23:44:02 +01:00
pythonImportsCheck = [ "fabric" ];
2019-08-21 00:06:15 +01:00
meta = with lib; {
description = "Pythonic remote execution";
homepage = "https://www.fabfile.org/";
license = licenses.bsd2;
maintainers = [ maintainers.costrouc ];
};
}