nixpkgs/pkgs/development/python-modules/signalslot/default.nix
Theodore Ni 821c943d1b
python310Packages.signalslot: remove weakrefmethod
This is not needed by the package when on Python >= 3.4.

Also add a dependency on pytest-xdist as it's asked for by the package,
and it removes some warnings when running tests due to pytest reporting
on unknown configuration options consumed by pytest-xdist.
2022-12-01 10:21:14 -08:00

59 lines
1 KiB
Nix

{ stdenv
, lib
, buildPythonPackage
, fetchPypi
, pythonRelaxDepsHook
, contexter
, eventlet
, mock
, pytest-xdist
, pytestCheckHook
, six
}:
buildPythonPackage rec {
pname = "signalslot";
version = "0.1.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-Z26RPNau+4719e82jMhb2LyIR6EvsANI8r3+eKuw494=";
};
postPatch = ''
substituteInPlace setup.cfg \
--replace "--pep8 --cov" "" \
--replace "--cov-report html" ""
'';
nativeBuildInputs = [
pythonRelaxDepsHook
];
propagatedBuildInputs = [
contexter
six
];
pythonRemoveDeps = [
"weakrefmethod" # needed until https://github.com/Numergy/signalslot/pull/17
];
checkInputs = [
eventlet
mock
pytest-xdist
pytestCheckHook
];
pythonImportsCheck = [ "signalslot" ];
meta = with lib; {
description = "Simple Signal/Slot implementation";
homepage = "https://github.com/numergy/signalslot";
license = licenses.mit;
maintainers = with maintainers; [ myaats ];
};
}