biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / b4 / default.nix
bloba4de4f93ce558c37d896d79ead789ba792df0d32
1 { lib, python3Packages, fetchPypi, patatt }:
3 python3Packages.buildPythonApplication rec {
4   pname = "b4";
5   version = "0.13.0";
7   src = fetchPypi {
8     inherit pname version;
9     hash = "sha256-gsok5aDi5oYJPMXVv3MFAehyKZ5hHBtvwf7z6Ut4dBQ=";
10   };
12   # tests make dns requests and fails
13   doCheck = false;
15   propagatedBuildInputs = with python3Packages; [
16     requests
17     dnspython
18     dkimpy
19     patatt
20     git-filter-repo
21   ];
23   meta = with lib; {
24     homepage = "https://git.kernel.org/pub/scm/utils/b4/b4.git/about";
25     license = licenses.gpl2Only;
26     description = "A helper utility to work with patches made available via a public-inbox archive";
27     mainProgram = "b4";
28     maintainers = with maintainers; [ jb55 qyliss mfrw ];
29   };