14 buildPythonPackage rec {
19 disabled = pythonOlder "3.8";
21 src = fetchFromGitHub {
22 owner = "ClearcodeHQ";
24 rev = "refs/tags/v${version}";
25 hash = "sha256-I1TKP0ESuBMTcReZf0tryjvGpSpwzofwmOiQqhyr6Zg=";
28 nativeBuildInputs = [ setuptools ];
30 propagatedBuildInputs = [ psutil ];
38 pythonImportsCheck = [ "mirakuru" ];
41 homepage = "https://pypi.org/project/mirakuru";
42 description = "Process orchestration tool designed for functional and integration tests";
43 changelog = "https://github.com/ClearcodeHQ/mirakuru/blob/v${version}/CHANGES.rst";
44 license = licenses.lgpl3Plus;
45 maintainers = with maintainers; [ bcdarwin ];