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