8 buildPythonPackage rec {
11 format = "setuptools";
13 src = fetchFromGitHub {
14 owner = "chrissimpkins";
17 hash = "sha256-HAe3Qf3lLeVWw/tVkW0J+CfoxSoOnCcWDR2nEWZn7HM=";
20 nativeCheckInputs = [ pytestCheckHook ];
21 pythonImportsCheck = [ "shellescape" ];
24 description = "Shell escape a string to safely use it as a token in a shell command (backport of Python shlex.quote)";
25 homepage = "https://github.com/chrissimpkins/shellescape";
26 license = with licenses; [
30 maintainers = with maintainers; [ veprbl ];