2022-06-16 17:23:12 +00:00
|
|
|
{ lib, python3Packages, patatt }:
|
2021-02-13 14:23:35 +00:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
pname = "b4";
|
2022-10-21 18:38:19 +00:00
|
|
|
version = "0.10.1";
|
2021-02-13 14:23:35 +00:00
|
|
|
|
|
|
|
src = python3Packages.fetchPypi {
|
|
|
|
inherit pname version;
|
2022-10-21 18:38:19 +00:00
|
|
|
sha256 = "zESWjmKz4DaiGg1VmbDlouTNm71YqIr1y9MCev72tEQ=";
|
2021-02-13 14:23:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# tests make dns requests and fails
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
|
|
requests
|
|
|
|
dnspython
|
|
|
|
dkimpy
|
2022-06-16 17:23:12 +00:00
|
|
|
patatt
|
2022-10-21 18:38:19 +00:00
|
|
|
git-filter-repo
|
2021-02-13 14:23:35 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://git.kernel.org/pub/scm/utils/b4/b4.git/about";
|
|
|
|
license = licenses.gpl2Only;
|
|
|
|
description = "A helper utility to work with patches made available via a public-inbox archive";
|
2022-10-21 18:38:19 +00:00
|
|
|
maintainers = with maintainers; [ jb55 qyliss ];
|
2021-02-13 14:23:35 +00:00
|
|
|
};
|
|
|
|
}
|