2017-09-08 03:01:41 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
2019-03-05 12:30:39 +00:00
|
|
|
, substituteAll
|
2017-09-08 03:01:41 +01:00
|
|
|
, supervise
|
2017-12-28 17:56:52 +00:00
|
|
|
, isPy3k
|
|
|
|
, whichcraft
|
2020-11-24 15:29:28 +00:00
|
|
|
, util-linux
|
2017-09-08 03:01:41 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "supervise_api";
|
2018-06-12 17:47:07 +01:00
|
|
|
version = "0.6.0";
|
2017-09-08 03:01:41 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-06-12 17:47:07 +01:00
|
|
|
sha256 = "1230f42294910e83421b7d3b08a968d27d510a4a709e966507ed70db5da1b9de";
|
2017-09-08 03:01:41 +01:00
|
|
|
};
|
|
|
|
|
2019-03-05 12:30:39 +00:00
|
|
|
patches = [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./supervise-path.patch;
|
|
|
|
inherit supervise;
|
|
|
|
})
|
2017-12-28 17:56:52 +00:00
|
|
|
];
|
2019-03-05 12:30:39 +00:00
|
|
|
|
|
|
|
# In the git repo, supervise_api lives inside a python subdir
|
|
|
|
patchFlags = [ "-p2" ];
|
|
|
|
|
|
|
|
propagatedBuildInputs = lib.optional (!isPy3k) whichcraft;
|
|
|
|
|
2020-11-24 15:29:28 +00:00
|
|
|
checkInputs = [ util-linux ];
|
2017-09-08 03:01:41 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "An API for running processes safely and securely";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/catern/supervise";
|
2017-09-08 03:01:41 +01:00
|
|
|
license = lib.licenses.lgpl3;
|
|
|
|
maintainers = with lib.maintainers; [ catern ];
|
|
|
|
};
|
|
|
|
}
|