mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 07:05:13 +00:00
7bd65d54f7
While looking at the sphinx package I noticed it was heavily undermaintained, which is when we noticed nand0p has been inactive for roughly 18 months. It is therefore prudent to assume they will not be maintaining their packages, modules and tests. - Their last contribution to nixpkgs was in 2019/12 - On 2021/05/08 I wrote them an email to the address listed in the maintainer-list, which they didn't reply to.
44 lines
946 B
Nix
44 lines
946 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, isPyPy
|
|
, fetchPypi
|
|
, pytestCheckHook
|
|
, setuptools-scm
|
|
, apipkg
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "execnet";
|
|
version = "1.8.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-tzxVZeUX8kti3qilzqwXjGYcQwnTqgw+QghWwHLEEbQ=";
|
|
};
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
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"}
|
|
'';
|
|
|
|
pythonImportsCheck = [ "execnet" ];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
meta = with lib; {
|
|
description = "Distributed Python deployment and communication";
|
|
license = licenses.mit;
|
|
homepage = "https://execnet.readthedocs.io/";
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
|
|
}
|