nixpkgs/pkgs/development/python-modules/execnet/default.nix

47 lines
953 B
Nix
Raw Normal View History

{ stdenv
, lib
, buildPythonPackage
, isPyPy
, fetchPypi
2019-05-25 03:06:00 +02:00
, pytest
, setuptools_scm
, apipkg
}:
buildPythonPackage rec {
pname = "execnet";
2019-10-16 11:43:06 +02:00
version = "1.7.1";
src = fetchPypi {
inherit pname version;
2019-10-16 11:43:06 +02:00
sha256 = "cacb9df31c9680ec5f95553976c4da484d407e85e41c83cb812aa014f0eddc50";
};
2019-05-25 03:06:00 +02:00
checkInputs = [ pytest ];
2019-01-05 10:31:16 +01:00
nativeBuildInputs = [ setuptools_scm ];
propagatedBuildInputs = [ apipkg ];
# remove vbox tests
postPatch = ''
rm -v testing/test_termination.py
rm -v testing/test_channel.py
rm -v testing/test_xspec.py
rm -v testing/test_gateway.py
${lib.optionalString isPyPy "rm -v testing/test_multi.py"}
'';
checkPhase = ''
py.test testing
'';
__darwinAllowLocalNetworking = true;
meta = with stdenv.lib; {
description = "Rapid multi-Python deployment";
license = licenses.gpl2;
2019-05-25 03:06:00 +02:00
homepage = "https://execnet.readthedocs.io/";
maintainers = with maintainers; [ nand0p ];
};
}