Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / shellescape / default.nix
blob6ea61402c0493ec0bfaf651aec559ce07cdecca7
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pytestCheckHook
5 }:
7 buildPythonPackage rec {
8   pname = "shellescape";
9   version = "3.8.1";
10   format = "setuptools";
12   src = fetchFromGitHub {
13     owner = "chrissimpkins";
14     repo = "shellescape";
15     rev = "v${version}";
16     hash = "sha256-HAe3Qf3lLeVWw/tVkW0J+CfoxSoOnCcWDR2nEWZn7HM=";
17   };
19   nativeCheckInputs = [ pytestCheckHook ];
20   pythonImportsCheck = [ "shellescape" ];
22   meta = with lib; {
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 ];
27   };