diff --git a/pkgs/development/python-modules/aiomisc-pytest/default.nix b/pkgs/development/python-modules/aiomisc-pytest/default.nix index 7fe99ede807d..d7b8b4c7fe6d 100644 --- a/pkgs/development/python-modules/aiomisc-pytest/default.nix +++ b/pkgs/development/python-modules/aiomisc-pytest/default.nix @@ -3,25 +3,25 @@ aiomisc, buildPythonPackage, fetchPypi, - poetry-core, + hatchling, pytest, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "aiomisc-pytest"; - version = "1.3.4"; + version = "2.0.0"; pyproject = true; src = fetchPypi { pname = "aiomisc_pytest"; - inherit version; - hash = "sha256-9Of1pSUcMiIhkz7OW5erF4oDlf/ABkaamDBPg7+WbBE="; + inherit (finalAttrs) version; + hash = "sha256-cbYrkO6YRSPFfhjgdXzuVA2wY5RyEmWcG+myGZu1TGU="; }; - build-system = [ poetry-core ]; - pythonRelaxDeps = [ "pytest" ]; + build-system = [ hatchling ]; + buildInputs = [ pytest ]; dependencies = [ aiomisc ]; @@ -37,4 +37,4 @@ buildPythonPackage rec { license = lib.licenses.asl20; maintainers = with lib.maintainers; [ fab ]; }; -} +})