Merge pull request #195263 from alyssais/b4-0.10.1

b4: 0.8.0 -> 0.10.1
This commit is contained in:
0x4A6F 2022-10-10 19:01:33 +02:00 committed by GitHub
commit a22a4fee10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 6 deletions

View File

@ -2,11 +2,11 @@
python3Packages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
pname = "b4"; pname = "b4";
version = "0.8.0"; version = "0.10.1";
src = python3Packages.fetchPypi { src = python3Packages.fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-fVHW27KIBT/GQ7hOx67qpVlOHLjHwdQcYl2XgCPTvoQ="; sha256 = "zESWjmKz4DaiGg1VmbDlouTNm71YqIr1y9MCev72tEQ=";
}; };
# tests make dns requests and fails # tests make dns requests and fails
@ -17,12 +17,13 @@ python3Packages.buildPythonApplication rec {
dnspython dnspython
dkimpy dkimpy
patatt patatt
git-filter-repo
]; ];
meta = with lib; { meta = with lib; {
homepage = "https://git.kernel.org/pub/scm/utils/b4/b4.git/about"; homepage = "https://git.kernel.org/pub/scm/utils/b4/b4.git/about";
license = licenses.gpl2Only; license = licenses.gpl2Only;
description = "A helper utility to work with patches made available via a public-inbox archive"; description = "A helper utility to work with patches made available via a public-inbox archive";
maintainers = with maintainers; [ jb55 ]; maintainers = with maintainers; [ jb55 qyliss ];
}; };
} }

View File

@ -2,11 +2,11 @@
python3Packages.buildPythonApplication rec { python3Packages.buildPythonApplication rec {
pname = "patatt"; pname = "patatt";
version = "0.5.0"; version = "0.6.2";
src = python3Packages.fetchPypi { src = python3Packages.fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-OUDu98f3CPI/hezdcIA2ndSOfCscVthuhkqq2jr9jXo="; sha256 = "sha256-WaEq4qWL6xAZ3cJJ/lkJ5XTIrXcOMIESbytvWbsYx2s=";
}; };
propagatedBuildInputs = with python3Packages; [ propagatedBuildInputs = with python3Packages; [
@ -23,6 +23,6 @@ python3Packages.buildPythonApplication rec {
DKIM email signature standard to include cryptographic DKIM email signature standard to include cryptographic
signatures via the X-Developer-Signature email header. signatures via the X-Developer-Signature email header.
''; '';
maintainers = with maintainers; [ yoctocell ]; maintainers = with maintainers; [ qyliss yoctocell ];
}; };
} }