b4: init at 0.6.2

Signed-off-by: William Casarin <jb55@jb55.com>
Reviewed-by: Xinglu Chen <public@yoctocell.xyz>
Reviewed-by: Matthias Beyer <mail@beyermatthias.de>
Message-Id: 20210206202618.32583-1-jb55@jb55.com
Link: https://lists.sr.ht/~andir/nixpkgs-dev/patches/20096
master
William Casarin 2021-02-06 12:26:18 -08:00
parent c77e2cc557
commit 425d6c7cb9
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,36 @@
{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "b4";
version = "0.6.2";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "1j904dy9cwxl85k2ngc498q5cdnqwsmw3jibjr1m55w8aqdck68z";
};
preConfigure = ''
substituteInPlace setup.py \
--replace 'requests~=2.24' 'requests~=2.25'
'';
# tests make dns requests and fails
doCheck = false;
propagatedBuildInputs = with python3Packages; [
requests
dnspython
dkimpy
# These may be required in the future for other patch attestation features
#pycryptodomex~=3.9.9
#PyNaCl
];
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";
maintainers = with maintainers; [ jb55 ];
};
}

View File

@ -11687,6 +11687,8 @@ in
avrdude = callPackage ../development/tools/misc/avrdude { };
b4 = callPackage ../development/tools/b4 { };
babeltrace = callPackage ../development/tools/misc/babeltrace { };
bam = callPackage ../development/tools/build-managers/bam {};