python310Packages.aiocsv: init at 1.2.2

This commit is contained in:
Fabian Affolter 2022-10-14 20:00:13 +02:00
parent 5601789677
commit da55381e2a
2 changed files with 56 additions and 0 deletions

View File

@ -0,0 +1,54 @@
{ lib
, aiofiles
, buildPythonPackage
, cython
, fetchFromGitHub
, pytest-asyncio
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "aiocsv";
version = "1.2.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "MKuranowski";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-lh+yHyHU+XrK4nk1xxrxgF5zGH7lP9jHdJ+m9ncfprw=";
};
nativeBuildInputs = [
cython
];
checkInputs = [
aiofiles
pytest-asyncio
pytestCheckHook
];
preBuild = ''
export CYTHONIZE=1
'';
pythonImportsCheck = [
"aiocsv"
];
disabledTestPaths = [
# Import issue
"tests/test_parser.py"
];
meta = with lib; {
description = "Library for for asynchronous CSV reading/writing";
homepage = "https://github.com/MKuranowski/aiocsv";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}

View File

@ -291,6 +291,8 @@ in {
aiocontextvars = callPackage ../development/python-modules/aiocontextvars { };
aiocsv = callPackage ../development/python-modules/aiocsv { };
aiocurrencylayer = callPackage ../development/python-modules/aiocurrencylayer { };
aiodiscover = callPackage ../development/python-modules/aiodiscover { };