0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
50 lines
1 KiB
Nix
50 lines
1 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
|
|
];
|
|
|
|
checkInputs = [
|
|
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 ];
|
|
};
|
|
}
|