nixpkgs/pkgs/development/python-modules/aiosignal/default.nix
2021-06-30 01:01:25 +02:00

45 lines
869 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, frozenlist
, pytest-asyncio
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "aiosignal";
version = "1.1.2";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "aio-libs";
repo = pname;
rev = "v${version}";
sha256 = "1gyvisccx25py85wwwlljai5qa20jvwyvacgrgkk1h18dkc262fw";
};
propagatedBuildInputs = [
frozenlist
];
checkInputs = [
pytest-asyncio
pytestCheckHook
];
postPatch = ''
substituteInPlace pytest.ini \
--replace "--cov=aiosignal" ""
'';
pythonImportsCheck = [ "aiosignal" ];
meta = with lib; {
description = "Python list of registered asynchronous callbacks";
homepage = "https://github.com/aio-libs/aiosignal";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}