mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 00:43:20 +00:00
59 lines
1.0 KiB
Nix
59 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
aiofiles,
|
|
buildPythonPackage,
|
|
cython,
|
|
fetchFromGitHub,
|
|
pytest-asyncio,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
setuptools,
|
|
typing-extensions,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aiocsv";
|
|
version = "1.3.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MKuranowski";
|
|
repo = "aiocsv";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-NnRLBXvQj25dSHc8ZnUaPT8Oiy2EyHLIb8IJPQliyPg=";
|
|
};
|
|
|
|
build-system = [
|
|
cython
|
|
setuptools
|
|
];
|
|
|
|
dependencies = [ typing-extensions ];
|
|
|
|
nativeCheckInputs = [
|
|
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 ];
|
|
};
|
|
}
|