nixpkgs/pkgs/development/tools/b4/default.nix
Esteban Blanc 747d748f3c b4: 0.13.0 -> 0.14.0
Signed-off-by: Esteban Blanc <estblcsk@gmail.com>
2024-06-25 09:12:20 +02:00

36 lines
827 B
Nix

{ lib, python3Packages, fetchPypi, patatt }:
python3Packages.buildPythonApplication rec {
pname = "b4";
version = "0.14.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-KaMo0aZhwv9F4aya5ViTBwPxK6RLPZgfRJ9g6O48SUk=";
};
# tests make dns requests and fails
doCheck = false;
build-system = with python3Packages; [
setuptools
];
propagatedBuildInputs = with python3Packages; [
requests
dnspython
dkimpy
patatt
git-filter-repo
];
meta = with lib; {
homepage = "https://git.kernel.org/pub/scm/utils/b4/b4.git/about";
license = licenses.gpl2Only;
description = "Helper utility to work with patches made available via a public-inbox archive";
mainProgram = "b4";
maintainers = with maintainers; [ jb55 qyliss mfrw ];
};
}