mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 06:55:10 +00:00
02dab4ab5c
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
37 lines
737 B
Nix
37 lines
737 B
Nix
{ buildPythonPackage
|
|
, fetchPypi
|
|
, lib
|
|
, pythonOlder
|
|
|
|
# Python dependencies
|
|
, uvloop
|
|
, pytest
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aioextensions";
|
|
version = "21.7.2261349";
|
|
format = "setuptools";
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "2eacc52692495f331437e8c8e9782ca71f4617ec84f174ca17acdd77631efc47";
|
|
};
|
|
|
|
propagatedBuildInputs = [ uvloop ];
|
|
|
|
nativeCheckInputs = [ pytest ];
|
|
checkPhase = ''
|
|
cd test/
|
|
pytest
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "High performance functions to work with the async IO";
|
|
homepage = "https://kamadorueda.github.io/aioextensions";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ kamadorueda ];
|
|
};
|
|
}
|