Unverified Commit 4ca866f4 authored by Wolfgang Walther's avatar Wolfgang Walther Committed by GitHub
Browse files

bashplotlib: 2021-03-31 -> 0.6.5-unstable-2021-03-31 (#432496)

parents 638dd679 65f8190b
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -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;
  };
}