From fe04e66f763e156bce179aa6582103fb550ba3ab Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 3 May 2024 17:53:03 +0200 Subject: [PATCH] python312Packages.smart-meter-texas: 0.5.3 -> 0.5.5 Diff: https://github.com/grahamwetzler/smart-meter-texas/compare/refs/tags/v0.5.3...v0.5.5 --- .../python-modules/smart-meter-texas/default.nix | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/smart-meter-texas/default.nix b/pkgs/development/python-modules/smart-meter-texas/default.nix index 556f978c7312..de9f007af7ba 100644 --- a/pkgs/development/python-modules/smart-meter-texas/default.nix +++ b/pkgs/development/python-modules/smart-meter-texas/default.nix @@ -5,13 +5,14 @@ , aiohttp , asn1 , python-dateutil +, setuptools , tenacity }: buildPythonPackage rec { pname = "smart-meter-texas"; - version = "0.5.3"; - format = "setuptools"; + version = "0.5.5"; + pyproject = true; disabled = pythonOlder "3.6"; @@ -19,15 +20,19 @@ buildPythonPackage rec { owner = "grahamwetzler"; repo = "smart-meter-texas"; rev = "refs/tags/v${version}"; - hash = "sha256-8htd5fLrtkaVlSEm+RB7tWA5YZkcAOjAXVNzZiMwP7k="; + hash = "sha256-dHWcYrBtmKdEIU45rMy4KvoPX88hnRpd4KBlbJaNvgI="; }; postPatch = '' substituteInPlace setup.py \ - --replace "pytest-runner" "" + --replace-fail "pytest-runner" "" ''; - propagatedBuildInputs = [ + build-system = [ + setuptools + ]; + + dependencies = [ aiohttp asn1 python-dateutil