mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 11:34:13 +00:00
python310Packages.circus: reintroduce as python-modules
This commit is contained in:
parent
a15c24234f
commit
a326efe74c
@ -1,10 +1,6 @@
|
||||
{ lib, python3, fetchPypi }:
|
||||
{ lib, buildPythonPackage, fetchPypi, psutil, pyzmq, tornado }:
|
||||
|
||||
let
|
||||
inherit (python3.pkgs) buildPythonApplication psutil pyzmq tornado;
|
||||
in
|
||||
|
||||
buildPythonApplication rec {
|
||||
buildPythonPackage rec {
|
||||
pname = "circus";
|
||||
version = "0.18.0";
|
||||
format = "flit";
|
@ -6577,7 +6577,7 @@ with pkgs;
|
||||
|
||||
circleci-cli = callPackage ../development/tools/misc/circleci-cli { };
|
||||
|
||||
circus = callPackage ../tools/networking/circus { };
|
||||
circus = with python3Packages; toPythonApplication circus;
|
||||
|
||||
cirrus-cli = callPackage ../development/tools/continuous-integration/cirrus-cli { };
|
||||
|
||||
|
@ -1879,6 +1879,8 @@ self: super: with self; {
|
||||
|
||||
circuitbreaker = callPackage ../development/python-modules/circuitbreaker { };
|
||||
|
||||
circus = callPackage ../development/python-modules/circus { };
|
||||
|
||||
cirq = callPackage ../development/python-modules/cirq { };
|
||||
|
||||
cirq-aqt = callPackage ../development/python-modules/cirq-aqt { };
|
||||
|
Loading…
Reference in New Issue
Block a user