Files
Michael Daniels 075e8c2c4f treewide: change 'format = "pyproject";' to 'pyproject = true;'
This is almost all find-and-replace.

I manually edited:
* pkgs/development/python-modules/notifications-android-tv/default.nix,
* pkgs/servers/home-assistant/default.nix,
* pkgs/development/tools/continuous-integration/buildbot/master.nix

A few files have not been changed in this PR because they would cause rebuilds.

This PR should have 0 rebuilds.
2026-01-12 17:50:35 -05:00

36 lines
720 B
Nix

{
lib,
python3Packages,
fetchFromGitHub,
nix-update-script,
}:
python3Packages.buildPythonApplication {
pname = "bashplotlib";
version = "0.6.5-unstable-2021-03-31";
pyproject = true;
src = fetchFromGitHub {
owner = "glamp";
repo = "bashplotlib";
rev = "db4065cfe65c0bf7c530e0e8b9328daf9593ad74";
sha256 = "sha256-0S6mgy6k7CcqsDR1kE5xcXGidF1t061e+M+ZuP2Gk3c=";
};
build-system = with python3Packages; [
setuptools
];
passthru.updateScript = nix-update-script { };
# No tests
doCheck = false;
meta = {
homepage = "https://github.com/glamp/bashplotlib";
description = "Plotting in the terminal";
maintainers = [ ];
license = lib.licenses.mit;
};
}