about summary refs log tree commit diff
path: root/pkgs/development/python-modules/supervise_api/default.nix
blob: 85f0106db65de08e71faaf2e9cacdd4c2f165afa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib
, buildPythonPackage
, fetchPypi
, supervise
}:

buildPythonPackage rec {
  pname = "supervise_api";
  version = "0.2.0";

  name = "${pname}-${version}";

  src = fetchPypi {
    inherit pname version;
    sha256 = "e6982633a924cb5192d2291d25b366ff311876a31b0f5961471b39d87397ef5b";
  };

  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 ];
  };
}