2022-08-10 16:03:22 +02:00
|
|
|
|
{ lib
|
|
|
|
|
, fetchFromGitHub
|
|
|
|
|
, python3
|
|
|
|
|
|
|
|
|
|
# tests
|
|
|
|
|
, git
|
|
|
|
|
, mercurial
|
|
|
|
|
, patch
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
|
|
|
pname = "mozphab";
|
2024-01-24 16:01:49 +01:00
|
|
|
|
version = "1.5.1";
|
2023-04-08 20:14:11 +02:00
|
|
|
|
format = "pyproject";
|
2022-08-10 16:03:22 +02:00
|
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
|
owner = "mozilla-conduit";
|
|
|
|
|
repo = "review";
|
|
|
|
|
rev = "refs/tags/${version}";
|
2024-01-24 16:01:49 +01:00
|
|
|
|
hash = "sha256-HxwQ+mGtjnruppPAD01QUg3aca+k5vpj814BWM+3VfQ=";
|
2022-08-10 16:03:22 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
postPatch = ''
|
2023-04-08 20:14:11 +02:00
|
|
|
|
substituteInPlace pyproject.toml \
|
2022-08-10 16:03:22 +02:00
|
|
|
|
--replace "glean-sdk>=50.0.1,==50.*" "glean-sdk"
|
|
|
|
|
'';
|
|
|
|
|
|
2023-04-08 20:14:11 +02:00
|
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
|
|
|
|
setuptools
|
|
|
|
|
setuptools-scm
|
|
|
|
|
];
|
|
|
|
|
|
2022-08-10 16:03:22 +02:00
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
2023-04-08 20:14:11 +02:00
|
|
|
|
colorama
|
2022-08-10 16:03:22 +02:00
|
|
|
|
distro
|
|
|
|
|
glean-sdk
|
|
|
|
|
packaging
|
|
|
|
|
python-hglib
|
|
|
|
|
sentry-sdk
|
|
|
|
|
setuptools
|
|
|
|
|
];
|
|
|
|
|
|
2023-01-21 13:00:00 +01:00
|
|
|
|
nativeCheckInputs = [
|
2022-08-10 16:03:22 +02:00
|
|
|
|
git
|
|
|
|
|
mercurial
|
|
|
|
|
patch
|
|
|
|
|
]
|
|
|
|
|
++ (with python3.pkgs; [
|
|
|
|
|
callee
|
|
|
|
|
immutabledict
|
|
|
|
|
hg-evolve
|
|
|
|
|
mock
|
|
|
|
|
pytestCheckHook
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
|
export HOME=$(mktemp -d)
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
disabledTestPaths = [
|
|
|
|
|
# codestyle doesn't matter to us
|
|
|
|
|
"tests/test_style.py"
|
|
|
|
|
# integration tests try to submit changes, which requires network access
|
|
|
|
|
"tests/test_integration_git.py"
|
|
|
|
|
"tests/test_integration_hg.py"
|
|
|
|
|
"tests/test_integration_hg_dag.py"
|
|
|
|
|
"tests/test_integration_patch.py"
|
|
|
|
|
"tests/test_integration_reorganise.py"
|
|
|
|
|
"tests/test_sentry.py"
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
|
description = "Phabricator CLI from Mozilla to support submission of a series of commits";
|
|
|
|
|
longDescription = ''
|
|
|
|
|
moz-phab is a custom command-line tool, which communicates to
|
|
|
|
|
Phabricator’s API, providing several conveniences, including support for
|
|
|
|
|
submitting series of commits.
|
|
|
|
|
'';
|
|
|
|
|
homepage = "https://moz-conduit.readthedocs.io/en/latest/phabricator-user.html";
|
|
|
|
|
license = licenses.mpl20;
|
|
|
|
|
maintainers = with maintainers; [];
|
|
|
|
|
platforms = platforms.unix;
|
|
|
|
|
};
|
|
|
|
|
}
|