nixpkgs/pkgs/applications/radio/chirp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
835 B
Nix
Raw Normal View History

{ lib
2022-12-08 03:38:04 +00:00
, fetchFromGitHub
, python3
, unstableGitUpdater
}:
2015-07-24 22:40:35 +00:00
2022-12-08 03:38:04 +00:00
python3.pkgs.buildPythonApplication rec {
pname = "chirp";
version = "unstable-2023-03-15";
2022-12-08 03:38:04 +00:00
src = fetchFromGitHub {
owner = "kk7ds";
repo = "chirp";
rev = "33402b7c545c5a92b7042369867e7eb75ef32a59";
hash = "sha256-duSEpd2GBBskoKNFos5X9wFtsjRct1918VhZd1T2rvU=";
2015-07-24 22:40:35 +00:00
};
2022-12-08 03:38:04 +00:00
propagatedBuildInputs = with python3.pkgs; [
future
pyserial
requests
six
wxPython_4_2
yattag
2015-07-24 22:40:35 +00:00
];
2022-12-08 03:38:04 +00:00
# "running build_ext" fails with no output
doCheck = false;
passthru.updateScript = unstableGitUpdater {
branch = "py3";
};
meta = with lib; {
description = "A free, open-source tool for programming your amateur radio";
homepage = "https://chirp.danplanet.com/";
2022-12-08 03:38:04 +00:00
license = licenses.gpl3Plus;
2015-07-24 22:40:35 +00:00
platforms = platforms.linux;
};
}