nixpkgs/pkgs/development/python-modules/throttler/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

44 lines
825 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, aiohttp
, codecov
, flake8
, pytest
, pytest-asyncio
, pytest-cov
}:
buildPythonPackage rec {
pname = "throttler";
version = "1.2.2";
format = "setuptools";
src = fetchFromGitHub {
owner = "uburuntu";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-fE35zPjBUn4e1VRkkIUMtYJ/+LbnUxnxyfnU+UEPwr4=";
};
checkInputs = [
aiohttp
codecov
flake8
pytest
pytest-asyncio
pytest-cov
pytestCheckHook
];
pytestFlagsArray = [ "tests/" ];
meta = with lib; {
description = "Zero-dependency Python package for easy throttling with asyncio support.";
homepage = "https://github.com/uburuntu/throttler";
license = licenses.mit;
maintainers = with maintainers; [ renatoGarcia ];
};
}