Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / aiocsv / default.nix
blob8feda8b86aa81dd9123562100056d88dd665194c
1 { lib
2 , aiofiles
3 , buildPythonPackage
4 , cython
5 , fetchFromGitHub
6 , pytest-asyncio
7 , pytestCheckHook
8 , pythonOlder
9 }:
11 buildPythonPackage rec {
12   pname = "aiocsv";
13   version = "1.2.5";
14   format = "setuptools";
16   disabled = pythonOlder "3.7";
18   src = fetchFromGitHub {
19     owner = "MKuranowski";
20     repo = pname;
21     rev = "refs/tags/v${version}";
22     hash = "sha256-4QvVYcTpwhFH57r+iMgmYciWIC2prRnL+ih7qx/CA/U=";
23   };
25   nativeBuildInputs = [
26     cython
27   ];
29   nativeCheckInputs = [
30     aiofiles
31     pytest-asyncio
32     pytestCheckHook
33   ];
35   preBuild = ''
36     export CYTHONIZE=1
37   '';
39   pythonImportsCheck = [
40     "aiocsv"
41   ];
43   disabledTestPaths = [
44     # Import issue
45     "tests/test_parser.py"
46   ];
48   meta = with lib; {
49     description = "Library for for asynchronous CSV reading/writing";
50     homepage = "https://github.com/MKuranowski/aiocsv";
51     license = with licenses; [ mit ];
52     maintainers = with maintainers; [ fab ];
53   };