lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python310Packages.defusedcsv: init at 2.0.0

+37
+35
pkgs/development/python-modules/defusedcsv/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + 5 + # tests 6 + , pytestCheckHook 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "defusedcsv"; 11 + version = "2.0.0"; 12 + format = "setuptools"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "raphaelm"; 16 + repo = "defusedcsv"; 17 + rev = "refs/tags/v${version}"; 18 + hash = "sha256-y8qLVfdkxRrDjtrTOLK5Zvi/1Vyv8eOnCueUkaRp4sQ="; 19 + }; 20 + 21 + pythonImportsCheck = [ 22 + "defusedcsv.csv" 23 + ]; 24 + 25 + nativeCheckInputs = [ 26 + pytestCheckHook 27 + ]; 28 + 29 + meta = with lib; { 30 + description = "Python library to protect your users from Excel injections in CSV-format exports, drop-in replacement for standard library's csv module"; 31 + homepage = "https://github.com/raphaelm/defusedcsv"; 32 + license = licenses.asl20; 33 + maintainers = with maintainers; [ hexa ]; 34 + }; 35 + }
+2
pkgs/top-level/python-packages.nix
··· 2408 2408 2409 2409 deform = callPackage ../development/python-modules/deform { }; 2410 2410 2411 + defusedcsv = callPackage ../development/python-modules/defusedcsv { }; 2412 + 2411 2413 defusedxml = callPackage ../development/python-modules/defusedxml { }; 2412 2414 2413 2415 deid = callPackage ../development/python-modules/deid { };