2017-09-07 19:01:41 -07:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, supervise
|
2017-12-28 09:56:52 -08:00
|
|
|
, isPy3k
|
|
|
|
, whichcraft
|
2018-05-03 07:42:01 -07:00
|
|
|
, utillinux
|
2017-09-07 19:01:41 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "supervise_api";
|
2018-06-12 09:47:07 -07:00
|
|
|
version = "0.6.0";
|
2017-09-07 19:01:41 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-06-12 09:47:07 -07:00
|
|
|
sha256 = "1230f42294910e83421b7d3b08a968d27d510a4a709e966507ed70db5da1b9de";
|
2017-09-07 19:01:41 -07:00
|
|
|
};
|
|
|
|
|
2017-12-28 09:56:52 -08:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
supervise
|
|
|
|
] ++ lib.optionals ( !isPy3k ) [
|
|
|
|
whichcraft
|
|
|
|
];
|
2018-05-03 07:42:01 -07:00
|
|
|
checkInputs = [ utillinux ];
|
2017-09-07 19:01:41 -07:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "An API for running processes safely and securely";
|
|
|
|
homepage = https://github.com/catern/supervise;
|
|
|
|
license = lib.licenses.lgpl3;
|
|
|
|
maintainers = with lib.maintainers; [ catern ];
|
|
|
|
};
|
|
|
|
}
|