mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
41 lines
900 B
Nix
41 lines
900 B
Nix
{ lib, python3 }:
|
|
|
|
let
|
|
python = python3.override {
|
|
self = python;
|
|
packageOverrides = self: super: {
|
|
tornado = super.tornado_4;
|
|
};
|
|
};
|
|
|
|
inherit (python.pkgs) buildPythonApplication fetchPypi iowait psutil pyzmq tornado mock six;
|
|
in
|
|
|
|
buildPythonApplication rec {
|
|
pname = "circus";
|
|
version = "0.16.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0paccmqwgard2l0z7swcc3nwc418l9b4mfaddb4s31bpnqg02z6x";
|
|
};
|
|
|
|
postPatch = ''
|
|
# relax version restrictions to fix build
|
|
substituteInPlace setup.py \
|
|
--replace "pyzmq>=13.1.0,<17.0" "pyzmq>13.1.0"
|
|
'';
|
|
|
|
nativeCheckInputs = [ mock ];
|
|
|
|
doCheck = false; # weird error
|
|
|
|
propagatedBuildInputs = [ iowait psutil pyzmq tornado six ];
|
|
|
|
meta = with lib; {
|
|
description = "A process and socket manager";
|
|
homepage = "https://github.com/circus-tent/circus";
|
|
license = licenses.asl20;
|
|
};
|
|
}
|