10 buildPythonPackage rec {
13 format = "setuptools";
15 src = fetchFromGitHub {
18 rev = "refs/tags/v${version}";
19 hash = "sha256-y8qLVfdkxRrDjtrTOLK5Zvi/1Vyv8eOnCueUkaRp4sQ=";
22 pythonImportsCheck = [ "defusedcsv.csv" ];
24 nativeCheckInputs = [ pytestCheckHook ];
27 description = "Python library to protect your users from Excel injections in CSV-format exports, drop-in replacement for standard library's csv module";
28 homepage = "https://github.com/raphaelm/defusedcsv";
29 license = licenses.asl20;
30 maintainers = with maintainers; [ hexa ];