1a04744f74
There is no need to disable Python packages for Python versions that are
no longer in Nixpkgs.
This change was generated using the following script:
pattern='^\s*disabled\s*=\s*pythonOlder\s*"3\.\([0-9]\|10\)"\s*;\s*$'
for f in $(find -name '*.nix'); do
grep -q "$pattern" "$f" || continue
sed -i "/$pattern/d" "$f"
if [ $(grep -c pythonOlder "$f") == 1 ]; then
sed -i '/^\s*pythonOlder,\s*$/d' "$f"
fi
nixfmt "$f"
done
56 lines
975 B
Nix
56 lines
975 B
Nix
{
|
|
lib,
|
|
aiofiles,
|
|
buildPythonPackage,
|
|
cython,
|
|
fetchFromGitHub,
|
|
pytest-asyncio,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
typing-extensions,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "aiocsv";
|
|
version = "1.4.0";
|
|
pyproject = true;
|
|
|
|
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 ];
|
|
};
|
|
}
|