blob: e5e6578e607ab8688e3a085ffb2a9922da84dc23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
version = "0.14.1";
format = "setuptools";
pname = "unicodecsv";
src = fetchPypi {
inherit pname version;
sha256 = "1z7pdwkr6lpsa7xbyvaly7pq3akflbnz8gq62829lr28gl1hi301";
};
# ImportError: No module named runtests
doCheck = false;
meta = {
description = "Drop-in replacement for Python2's stdlib csv module, with unicode support";
homepage = "https://github.com/jdunck/python-unicodecsv";
maintainers = with lib.maintainers; [ koral ];
};
}
|