nixpkgs/pkgs/development/python-modules/signalslot/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01: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;
hash = "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
];
nativeCheckInputs = [
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 ];
};
}