nixpkgs/pkgs/development/python-modules/aiosignal/default.nix
2024-05-22 17:32:03 +02:00

48 lines
1.0 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
frozenlist,
pytest-asyncio,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
pname = "aiosignal";
version = "1.3.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "aio-libs";
repo = pname;
rev = "v${version}";
hash = "sha256-vx3Fe28r+0it1UFwyDSD9NNyeIN4tywTyr4pVp49WuU=";
};
propagatedBuildInputs = [ frozenlist ];
nativeCheckInputs = [
pytest-asyncio
pytestCheckHook
];
postPatch = ''
substituteInPlace setup.cfg \
--replace "filterwarnings = error" "" \
--replace "--cov=aiosignal" ""
'';
pythonImportsCheck = [ "aiosignal" ];
meta = with lib; {
description = "Python list of registered asynchronous callbacks";
homepage = "https://github.com/aio-libs/aiosignal";
changelog = "https://github.com/aio-libs/aiosignal/blob/v${version}/CHANGES.rst";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}