about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/shellescape/default.nix
blob: 2d7309d88215cb68841bd0431c18147b03479288 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "shellescape";
  version = "3.8.1";

  src = fetchFromGitHub {
    owner = "chrissimpkins";
    repo = "shellescape";
    rev = "v${version}";
    hash = "sha256-HAe3Qf3lLeVWw/tVkW0J+CfoxSoOnCcWDR2nEWZn7HM=";
  };

  checkInputs = [ pytestCheckHook ];
  pythonImportsCheck = [ "shellescape" ];

  meta = with lib; {
    description = "Shell escape a string to safely use it as a token in a shell command (backport of Python shlex.quote)";
    homepage = "https://github.com/chrissimpkins/shellescape";
    license = with licenses; [ mit psfl ];
    maintainers = with maintainers; [ veprbl ];
  };
}