python310Packages.mirakuru: init at 2.5.1

This commit is contained in:
Ben Darwin 2023-09-27 15:33:57 -04:00
parent fa810ed10a
commit f28d661e49
2 changed files with 48 additions and 0 deletions

View file

@ -0,0 +1,46 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
, setuptools
, psutil
, netcat
, ps
, python-daemon
}:
buildPythonPackage rec {
pname = "mirakuru";
version = "2.5.1";
format = "pyproject";
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "ClearcodeHQ";
repo = "mirakuru";
rev = "refs/tags/v${version}";
hash = "sha256-jBsSvIy2FaAYlDZLjJXl9hyCiK+nk/cM5j128f24dRc=";
};
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 ];
};
}

View file

@ -6732,6 +6732,8 @@ self: super: with self; {
mir_eval = callPackage ../development/python-modules/mir_eval { };
mirakuru = callPackage ../development/python-modules/mirakuru { };
misaka = callPackage ../development/python-modules/misaka { };
misoc = callPackage ../development/python-modules/misoc { };