pythonPackage.Fabric: 2.4.0 -> 2.5.0

This commit is contained in:
Jonathan Ringer 2019-08-20 16:06:15 -07:00
parent ca0876bcba
commit 38626c18cc

View File

@ -1,33 +1,29 @@
{ pkgs { lib, buildPythonPackage, fetchPypi
, buildPythonPackage
, fetchPypi
, invoke
, paramiko
, cryptography , cryptography
, pytest , invoke
, mock , mock
, paramiko
, pytest
, pytest-relaxed , pytest-relaxed
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "fabric"; pname = "fabric";
version = "2.4.0"; version = "2.5.0";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "93684ceaac92e0b78faae551297e29c48370cede12ff0f853cdebf67d4b87068"; sha256 = "19nzdibjfndzcwvby20p59igqwyzw7skrb45v2mxqsjma5yjv114";
}; };
propagatedBuildInputs = [ invoke paramiko cryptography ]; propagatedBuildInputs = [ invoke paramiko cryptography ];
checkInputs = [ pytest mock pytest-relaxed ]; checkInputs = [ pytest mock pytest-relaxed ];
# ignore subprocess main errors (1) due to hardcoded /bin/bash
checkPhase = '' checkPhase = ''
rm tests/main.py
pytest tests pytest tests
''; '';
meta = with pkgs.lib; { meta = with lib; {
description = "Pythonic remote execution"; description = "Pythonic remote execution";
homepage = https://www.fabfile.org/; homepage = https://www.fabfile.org/;
license = licenses.bsd2; license = licenses.bsd2;