aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/restrictedpython/default.nix
blob: d7005e154504678f3d53563426ba53573d32af7d (plain)
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
28
29
30
31
32
33
34
{ lib
, buildPythonPackage
, fetchPypi

# Test dependencies
, pytest, pytest-mock
}:

buildPythonPackage rec {
  pname = "RestrictedPython";
  version = "5.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "9ae16e500782b41bd1abefd8554ccb26330817bba9ce090d385aa226f1ca83e8";
  };

  #propagatedBuildInputs = [ xmltodict requests ifaddr ];

  checkInputs = [
    pytest pytest-mock
  ];

  checkPhase = ''
    pytest
  '';

  meta = {
    homepage = "https://github.com/zopefoundation/RestrictedPython";
    description = "A restricted execution environment for Python to run untrusted code";
    license = lib.licenses.zpl21;
    maintainers = with lib.maintainers; [ juaningan ];
  };
}