fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
47 lines
1,006 B
Nix
47 lines
1,006 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
psutil,
|
|
netcat,
|
|
ps,
|
|
python-daemon,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mirakuru";
|
|
version = "2.5.2";
|
|
format = "pyproject";
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ClearcodeHQ";
|
|
repo = "mirakuru";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-I1TKP0ESuBMTcReZf0tryjvGpSpwzofwmOiQqhyr6Zg=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
propagatedBuildInputs = [ psutil ];
|
|
|
|
nativeCheckInputs = [
|
|
netcat.nc
|
|
ps
|
|
python-daemon
|
|
pytestCheckHook
|
|
];
|
|
pythonImportsCheck = [ "mirakuru" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://pypi.org/project/mirakuru";
|
|
description = "Process orchestration tool designed for functional and integration tests";
|
|
changelog = "https://github.com/ClearcodeHQ/mirakuru/blob/v${version}/CHANGES.rst";
|
|
license = licenses.lgpl3Plus;
|
|
maintainers = with maintainers; [ bcdarwin ];
|
|
};
|
|
}
|