13 buildPythonPackage rec {
18 disabled = pythonOlder "3.8";
20 src = fetchFromGitHub {
21 owner = "ClearcodeHQ";
23 rev = "refs/tags/v${version}";
24 hash = "sha256-jBsSvIy2FaAYlDZLjJXl9hyCiK+nk/cM5j128f24dRc=";
27 nativeBuildInputs = [ setuptools ];
29 propagatedBuildInputs = [ psutil ];
37 pythonImportsCheck = [ "mirakuru" ];
40 homepage = "https://pypi.org/project/mirakuru";
41 description = "Process orchestration tool designed for functional and integration tests";
42 changelog = "https://github.com/ClearcodeHQ/mirakuru/blob/v${version}/CHANGES.rst";
43 license = licenses.lgpl3Plus;
44 maintainers = with maintainers; [ bcdarwin ];