diff --git a/pkgs/development/python-modules/inform/default.nix b/pkgs/development/python-modules/inform/default.nix index 6b493f57b73d..767727063ea3 100644 --- a/pkgs/development/python-modules/inform/default.nix +++ b/pkgs/development/python-modules/inform/default.nix @@ -11,21 +11,21 @@ pythonAtLeast, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "inform"; - version = "1.35"; - format = "pyproject"; + version = "1.36"; + pyproject = true; src = fetchFromGitHub { owner = "KenKundert"; repo = "inform"; - tag = "v${version}"; - hash = "sha256-FQc8R4MJ5RKJi70ADboy2Lw6IwLaI3hup60GcnPxV60="; + tag = "v${finalAttrs.version}"; + hash = "sha256-x2xLEcywMaYhq/SWPVu48zTHJW3/MWujjr4y6/uEClU="; }; - nativeBuildInputs = [ flit-core ]; + build-system = [ flit-core ]; - propagatedBuildInputs = [ + dependencies = [ arrow six ]; @@ -52,8 +52,8 @@ buildPythonPackage rec { allow you to simply and cleanly print different types of messages. ''; homepage = "https://inform.readthedocs.io"; - changelog = "https://github.com/KenKundert/inform/blob/${src.tag}/doc/releases.rst"; + changelog = "https://github.com/KenKundert/inform/blob/${finalAttrs.src.tag}/doc/releases.rst"; license = lib.licenses.gpl3Only; maintainers = with lib.maintainers; [ jeremyschlatter ]; }; -} +})