depot/third_party/nixpkgs/pkgs/development/python-modules/aiokef/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

46 lines
968 B
Nix

{
lib,
async-timeout,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
tenacity,
}:
buildPythonPackage rec {
pname = "aiokef";
version = "0.2.17";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "basnijholt";
repo = pname;
rev = "v${version}";
sha256 = "0ms0dwrpj80w55svcppbnp7vyl5ipnjfp1c436k5c7pph4q5pxk9";
};
postPatch = ''
substituteInPlace tox.ini \
--replace "--cov --cov-append --cov-fail-under=30 --cov-report=" "" \
--replace "--mypy" ""
'';
propagatedBuildInputs = [
async-timeout
tenacity
];
nativeCheckInputs = [ pytestCheckHook ];
pytestFlagsArray = [ "tests" ];
pythonImportsCheck = [ "aiokef" ];
meta = with lib; {
description = "Python API for KEF speakers";
homepage = "https://github.com/basnijholt/aiokef";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}