fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
25 lines
561 B
Nix
25 lines
561 B
Nix
{
|
|
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 = with lib; {
|
|
description = "Drop-in replacement for Python2's stdlib csv module, with unicode support";
|
|
homepage = "https://github.com/jdunck/python-unicodecsv";
|
|
maintainers = with maintainers; [ koral ];
|
|
};
|
|
}
|