11 buildPythonPackage rec {
14 format = "setuptools";
16 disabled = pythonOlder "3.7";
18 src = fetchFromGitHub {
22 hash = "sha256-vx3Fe28r+0it1UFwyDSD9NNyeIN4tywTyr4pVp49WuU=";
25 propagatedBuildInputs = [ frozenlist ];
33 substituteInPlace setup.cfg \
34 --replace "filterwarnings = error" "" \
35 --replace "--cov=aiosignal" ""
38 pythonImportsCheck = [ "aiosignal" ];
41 description = "Python list of registered asynchronous callbacks";
42 homepage = "https://github.com/aio-libs/aiosignal";
43 changelog = "https://github.com/aio-libs/aiosignal/blob/v${version}/CHANGES.rst";
44 license = with licenses; [ asl20 ];
45 maintainers = with maintainers; [ fab ];