summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2024-05-12 11:44:38 +0200
committerGitHub <noreply@github.com>2024-05-12 11:44:38 +0200
commiteb4f6a2c29dc3c85fdfb8641dd65642916b9cab6 (patch)
tree7ed680f75a11ba926ab50229215ce55d4d9f6ab9
parentaf8b9db5c00f1a8e4b83578acc578ff7d823b786 (diff)
parentb1d55c7e32fa1b143b35582375c35cd0d9fa59ad (diff)
Merge pull request #310946 from r-ryantm/auto-update/python311Packages.adext
python311Packages.adext: 0.4.2 -> 0.4.3
-rw-r--r--pkgs/development/python-modules/adext/default.nix39
1 files changed, 19 insertions, 20 deletions
diff --git a/pkgs/development/python-modules/adext/default.nix b/pkgs/development/python-modules/adext/default.nix
index c5a05d19bee8..8a7345613de7 100644
--- a/pkgs/development/python-modules/adext/default.nix
+++ b/pkgs/development/python-modules/adext/default.nix
@@ -1,40 +1,39 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, setuptools-scm
-, alarmdecoder
-, pytestCheckHook
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
+ setuptools-scm,
+ alarmdecoder,
+ pytestCheckHook,
+ pythonOlder,
}:
buildPythonPackage rec {
pname = "adext";
- version = "0.4.2";
- format = "setuptools";
+ version = "0.4.3";
+ pyproject = true;
+
+ disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "ajschmidt8";
- repo = pname;
- rev = "v${version}";
- sha256 = "0h5k9kzms2f0r48pdhsgv8pimk0vsxw8vs0k6880mank8ij914wr";
+ repo = "adext";
+ rev = "refs/tags/v${version}";
+ hash = "sha256-y8BvcSc3vD0FEWiyzW2Oh6PBS2Itjs2sz+9Dzh5yqSg=";
};
- nativeBuildInputs = [
- setuptools-scm
- ];
+ build-system = [ setuptools-scm ];
- propagatedBuildInputs = [
- alarmdecoder
- ];
+ dependencies = [ alarmdecoder ];
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "adext" ];
meta = with lib; {
description = "Python extension for AlarmDecoder";
homepage = "https://github.com/ajschmidt8/adext";
+ changelog = "https://github.com/ajschmidt8/adext/releases/tag/v${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};