librewolf: 132.0.1 -> 132.0.1-1 (#355483)
[NixPkgs.git] / pkgs / by-name / df / dfmt / package.nix
blobc31335e560f1ad6272c18cb0ee712e63e1fa61d1
1 { lib
2 , python3
3 , fetchPypi
4 }:
6 let
7   inherit (python3.pkgs)
8     buildPythonApplication
9     pythonOlder;
11 buildPythonApplication rec {
12   pname = "dfmt";
13   version = "1.2.0";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     inherit pname version;
18     sha256 = "7af6360ca8d556f1cfe82b97f03b8d1ea5a9d6de1fa3018290c844b6566d9d6e";
19   };
21   meta = with lib; {
22     description = "Format paragraphs, comments and doc strings";
23     mainProgram = "dfmt";
24     homepage = "https://github.com/dmerejkowsky/dfmt";
25     license = licenses.bsd3;
26     maintainers = with maintainers; [ cole-h ];
27   };