python310Packages.aiocsv: init at 1.2.2

main
Fabian Affolter 2 years ago
parent 5601789677
commit da55381e2a
  1. 54
      pkgs/development/python-modules/aiocsv/default.nix
  2. 2
      pkgs/top-level/python-packages.nix

@ -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 ];
};
}

@ -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 { };

Loading…
Cancel
Save