mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
747d748f3c
Signed-off-by: Esteban Blanc <estblcsk@gmail.com>
36 lines
827 B
Nix
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 ];
|
|
};
|
|
}
|