depot/third_party/nixpkgs/pkgs/development/tools/b4/default.nix
Default email 7e47f3658e Project import generated by Copybara.
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
2024-09-26 11:04:55 +00:00

35 lines
827 B
Nix

{ lib, python3Packages, fetchPypi, patatt }:
python3Packages.buildPythonApplication rec {
pname = "b4";
version = "0.14.2";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-T4NbblrjDv9gBLslwV/Y9Pbs0RBVluhtsYcf730YET0=";
};
# 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 ];
};
}