depot/third_party/nixpkgs/pkgs/development/python-modules/pyloadapi/default.nix
Default email 83627f9931 Project import generated by Copybara.
GitOrigin-RevId: 2893f56de08021cffd9b6b6dfc70fd9ccd51eb60
2024-06-24 14:47:55 -04:00

58 lines
1.1 KiB
Nix

{
lib,
aiohttp,
aioresponses,
buildPythonPackage,
fetchFromGitHub,
hatch-regex-commit,
hatchling,
pytest-asyncio,
pytestCheckHook,
python-dotenv,
pythonOlder,
}:
buildPythonPackage rec {
pname = "pyloadapi";
version = "1.2.0";
pyproject = true;
disabled = pythonOlder "3.12";
src = fetchFromGitHub {
owner = "tr4nt0r";
repo = "pyloadapi";
rev = "refs/tags/v${version}";
hash = "sha256-uOgqc1RqmEk0Lqz/ixlChKTZva7+0v4V8KutLSgPKEE=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail "--cov=src/pyloadapi/ --cov-report=term-missing" ""
'';
build-system = [
hatch-regex-commit
hatchling
];
dependencies = [ aiohttp ];
nativeCheckInputs = [
aioresponses
pytest-asyncio
pytestCheckHook
python-dotenv
];
pythonImportsCheck = [ "pyloadapi" ];
meta = with lib; {
description = "Simple wrapper for pyLoad's API";
homepage = "https://github.com/tr4nt0r/pyloadapi";
changelog = "https://github.com/tr4nt0r/pyloadapi/blob/${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}