about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aiomysensors/default.nix
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-01-11 11:06:59 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2024-01-11 11:06:59 +0100
commitf4d565bdb854af1a1d314493d76cfc5ec3c48722 (patch)
tree145207012c1d55974f5d7783cd8ab79c7357cca3 /pkgs/development/python-modules/aiomysensors/default.nix
parentcf53751a16df6ae52eb3be7019aa9c34017e490b (diff)
python311Packages.aiomysensors: 0.3.10 -> 0.3.11
Diff: https://github.com/MartinHjelmare/aiomysensors/compare/refs/tags/v0.3.10...v0.3.11

Changelog: https://github.com/MartinHjelmare/aiomysensors/releases/tag/v0.3.11
Diffstat (limited to 'pkgs/development/python-modules/aiomysensors/default.nix')
-rw-r--r--pkgs/development/python-modules/aiomysensors/default.nix13
1 files changed, 6 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/aiomysensors/default.nix b/pkgs/development/python-modules/aiomysensors/default.nix
index e26c6eb53bd95..5d92471c472cc 100644
--- a/pkgs/development/python-modules/aiomysensors/default.nix
+++ b/pkgs/development/python-modules/aiomysensors/default.nix
@@ -15,24 +15,23 @@
 
 buildPythonPackage rec {
   pname = "aiomysensors";
-  version = "0.3.10";
-  format = "pyproject";
+  version = "0.3.11";
+  pyproject = true;
 
   disabled = pythonOlder "3.9";
 
   src = fetchFromGitHub {
     owner = "MartinHjelmare";
-    repo = pname;
+    repo = "aiomysensors";
     rev = "refs/tags/v${version}";
-    hash = "sha256-b462OZzRS9aldfJ+4ztczxbCMK76UM0pSOI1cIi1NM8=";
+    hash = "sha256-uBmFJFmUClTkaAg8jTThygzmZv7UZDPSt0bXo8BLu00=";
   };
 
   postPatch = ''
     substituteInPlace pyproject.toml \
-      --replace " --cov=src --cov-report=term-missing:skip-covered" "" \
-      --replace 'marshmallow = "^3.17"' 'marshmallow = "*"' \
-      --replace 'awesomeversion = "^22.6"' 'awesomeversion = "*"'
+      --replace " --cov=src --cov-report=term-missing:skip-covered" ""
   '';
+
   nativeBuildInputs = [
     poetry-core
   ];