nixpkgs/pkgs/development/python-modules/aiosignal/default.nix
2022-12-09 19:24:35 +01:00

51 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 ];
};
}