567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
59 lines
1023 B
Nix
59 lines
1023 B
Nix
{
|
|
lib,
|
|
aiofiles,
|
|
buildPythonPackage,
|
|
cython,
|
|
fetchFromGitHub,
|
|
pytest-asyncio,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
setuptools,
|
|
typing-extensions,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aiocsv";
|
|
version = "1.4.0";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MKuranowski";
|
|
repo = "aiocsv";
|
|
tag = "v${version}";
|
|
hash = "sha256-cNoUrD0UP8F2W2HiSm7dQL3nhiL/h0Hr6TDsAKWb24M=";
|
|
};
|
|
|
|
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 = {
|
|
description = "Library for for asynchronous CSV reading/writing";
|
|
homepage = "https://github.com/MKuranowski/aiocsv";
|
|
license = with lib.licenses; [ mit ];
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
};
|
|
}
|