pythonPackages.supervise_api: init at 0.1.5

This commit is contained in:
Spencer Baugh 2017-09-08 02:01:41 +00:00 committed by Frederik Rietdijk
parent 8f362a1eff
commit a9e090f749
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ lib
, buildPythonPackage
, fetchPypi
, supervise
}:
buildPythonPackage rec {
pname = "supervise_api";
version = "0.1.5";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "1pqqlw80cjdgrlpvdmydkyhsrr4s531mn6bfkshm68j9gk4kq6px";
};
propagatedBuildInputs = [ supervise ];
# no tests
doCheck = false;
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 ];
};
}

View File

@ -291,6 +291,8 @@ in {
sip = callPackage ../development/python-modules/sip { };
supervise_api = callPackage ../development/python-modules/supervise_api { };
tables = callPackage ../development/python-modules/tables {
hdf5 = pkgs.hdf5.override { zlib = pkgs.zlib; };
};