pythonPackages.supervise_api: init at 0.1.5
This commit is contained in:
parent
8f362a1eff
commit
a9e090f749
29
pkgs/development/python-modules/supervise_api/default.nix
Normal file
29
pkgs/development/python-modules/supervise_api/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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; };
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user