evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / go / gomp / package.nix
blob4cac73ebe866dbaa94e26a9442eb50e8ae930233
1 { lib
2 , python3Packages
3 , fetchPypi
4 }:
6 python3Packages.buildPythonApplication rec {
7   pname = "gomp";
8   version = "1.1.1";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "sha256-Ixq9jtV56FKbh68jqmRd3lwpbMG00GcOUIpjzJhnSp0=";
13   };
15   doCheck = false; # tests require interactive terminal
17   meta = with lib; {
18     description = "Tool for comparing Git branches";
19     homepage = "https://github.com/MarkForged/GOMP";
20     license = licenses.mit;
21     maintainers = with maintainers; [ prusnak ];
22     platforms = platforms.unix;
23     mainProgram = "gomp";
24   };