From 123a4dc64655f59ebcc64c6c9ece17d81ec63b79 Mon Sep 17 00:00:00 2001 From: jgart Date: Mon, 4 Apr 2022 12:47:11 -0400 Subject: gn: packages: python: add python-supervisor todo: fix tests: https://github.com/NixOS/nixpkgs/blob/nixos-21.11/pkgs/development/python-modules/supervisor/default.nix#L16 --- gn/packages/python.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'gn/packages/python.scm') diff --git a/gn/packages/python.scm b/gn/packages/python.scm index a15edae..3f9a847 100644 --- a/gn/packages/python.scm +++ b/gn/packages/python.scm @@ -1855,3 +1855,26 @@ file format spec.") pytest PDB integration.") (license license:expat)))) +(define-public python-supervisor + (package + (name "python-supervisor") + (version "4.2.4") + (source + (origin + (method url-fetch) + (uri (pypi-uri "supervisor" version)) + (sha256 + (base32 "18lpddhyl8ziy6lc0klassxpd8kdg8c0nhkrvz1k3ipfw4n5ip20")))) + (build-system python-build-system) + (native-inputs + (list python-pytest python-pytest-cov)) + (arguments (list #:tests? #f)) ; fixme + (home-page "http://supervisord.org/") + (synopsis "A system for controlling process state under UNIX") + (description + "This package provides a system for controlling process state under UNIX") + (license + ;; https://github.com/Supervisor/supervisor/issues/1364 + (license:fsf-free (string-append "https://web.archive.org/web/20190211105114/" + "http://www.repoze.org/LICENSE.txt"))))) + -- cgit v1.2.3