Merge pull request #326171 from wrmilling/chirp-update
chirp: 0.4.0-unstable-2024-05-24 -> 0.4.0-unstable-2024-07-05, python311Packages.suds: init at 1.1.2
This commit is contained in:
commit
9fff5d5f58
@ -10,13 +10,13 @@
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "chirp";
|
||||
version = "0.4.0-unstable-2024-05-24";
|
||||
version = "0.4.0-unstable-2024-07-05";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kk7ds";
|
||||
repo = "chirp";
|
||||
rev = "e17c021ba4fc39eea8a2a1de37ef04a0d1253090";
|
||||
hash = "sha256-YvIRo7g9fxnlf8og5CM2JLf8DeADVkcHdvb4ppS1veE=";
|
||||
rev = "f28814fff0566dcf6f93ac5b7a79d6d594202757";
|
||||
hash = "sha256-SQ0j9DGJc48TsaUaesixJT/pMBm9NGw22qapSokj9r8=";
|
||||
};
|
||||
buildInputs = [
|
||||
glib
|
||||
@ -30,6 +30,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||
pyserial
|
||||
requests
|
||||
six
|
||||
suds
|
||||
wxpython
|
||||
yattag
|
||||
];
|
||||
@ -47,7 +48,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||
description = "Free, open-source tool for programming your amateur radio";
|
||||
homepage = "https://chirp.danplanet.com/";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = [ maintainers.emantor ];
|
||||
maintainers = with maintainers; [ emantor wrmilling ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
36
pkgs/development/python-modules/suds/default.nix
Normal file
36
pkgs/development/python-modules/suds/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
pytestCheckHook,
|
||||
setuptools,
|
||||
six,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "suds";
|
||||
version = "1.1.2";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-HVz6dBFxk7JEpCM/JGxIPZ9BGYtEjF8UqLrRHE9knys=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
six
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "suds" ];
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/suds-community/suds/blob/v${version}/CHANGELOG.md";
|
||||
description = "Lightweight SOAP python client for consuming Web Services";
|
||||
homepage = "https://github.com/suds-community/suds";
|
||||
license = lib.licenses.lgpl3Plus;
|
||||
maintainers = with lib.maintainers; [ wrmilling ];
|
||||
};
|
||||
}
|
@ -29682,7 +29682,9 @@ with pkgs;
|
||||
|
||||
chatty = callPackage ../applications/networking/instant-messengers/chatty { };
|
||||
|
||||
chirp = callPackage ../applications/radio/chirp { };
|
||||
chirp = callPackage ../applications/radio/chirp {
|
||||
python3 = python311;
|
||||
};
|
||||
|
||||
browsh = callPackage ../applications/networking/browsers/browsh { };
|
||||
|
||||
|
@ -14917,6 +14917,8 @@ self: super: with self; {
|
||||
|
||||
sudachipy = callPackage ../development/python-modules/sudachipy { };
|
||||
|
||||
suds = callPackage ../development/python-modules/suds { };
|
||||
|
||||
sumo = callPackage ../development/python-modules/sumo { };
|
||||
|
||||
sumtypes = callPackage ../development/python-modules/sumtypes { };
|
||||
|
Loading…
Reference in New Issue
Block a user