My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/unicodecsv/default.nix

24 lines
532 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
version = "0.14.1";
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 ];
};
}