11 buildPythonPackage rec {
12 pname = "supervise_api";
16 inherit pname version;
17 sha256 = "1230f42294910e83421b7d3b08a968d27d510a4a709e966507ed70db5da1b9de";
22 src = ./supervise-path.patch;
27 # In the git repo, supervise_api lives inside a python subdir
28 patchFlags = [ "-p2" ];
30 propagatedBuildInputs = lib.optional (!isPy3k) whichcraft;
32 checkInputs = [ util-linux ];
35 description = "An API for running processes safely and securely";
36 homepage = "https://github.com/catern/supervise";
37 license = lib.licenses.lgpl3;
38 maintainers = with lib.maintainers; [ catern ];