nixpkgs/pkgs/development/python-modules/mirakuru/default.nix
2023-09-27 19:42:30 -04:00

47 lines
994 B
Nix

{ 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 ];
};
}