From 65f8190bb4a0e9530de6cdb396762b79c603eb65 Mon Sep 17 00:00:00 2001 From: Aliaksandr Date: Sun, 10 Aug 2025 13:59:13 +0300 Subject: [PATCH] bashplotlib: 2021-03-31 -> 0.6.5-unstable-2021-03-31 --- pkgs/by-name/ba/bashplotlib/package.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/ba/bashplotlib/package.nix b/pkgs/by-name/ba/bashplotlib/package.nix index afac32b49113..891a04b773aa 100644 --- a/pkgs/by-name/ba/bashplotlib/package.nix +++ b/pkgs/by-name/ba/bashplotlib/package.nix @@ -2,11 +2,12 @@ lib, python3Packages, fetchFromGitHub, + nix-update-script, }: python3Packages.buildPythonApplication { pname = "bashplotlib"; - version = "2021-03-31"; + version = "0.6.5-unstable-2021-03-31"; format = "pyproject"; src = fetchFromGitHub { @@ -20,13 +21,15 @@ python3Packages.buildPythonApplication { setuptools ]; + passthru.updateScript = nix-update-script { }; + # No tests doCheck = false; - meta = with lib; { + meta = { homepage = "https://github.com/glamp/bashplotlib"; description = "Plotting in the terminal"; - maintainers = with maintainers; [ dtzWill ]; - license = licenses.mit; + maintainers = with lib.maintainers; [ dtzWill ]; + license = lib.licenses.mit; }; }