depot/third_party/nixpkgs/pkgs/misc/base16-shell-preview/default.nix
Default email 9c6ee729d6 Project import generated by Copybara.
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
2023-07-15 19:15:38 +02:00

29 lines
725 B
Nix

{ lib
, python3Packages
, fetchPypi
}:
let
pname = "base16-shell-preview";
version = "1.0.0";
in
python3Packages.buildPythonApplication {
inherit pname version;
src = fetchPypi {
inherit version;
pname = "${lib.replaceStrings ["-"] ["_"] pname}";
hash = "sha256-retnbxjdjo+NeA1B0+jpM9kToAX/Rh0ze0yNF9AfDiU=";
};
# If enabled, it will attempt to run '__init__.py, failing by trying to write
# at "/homeless-shelter" as HOME
doCheck = false;
meta = {
homepage = "https://github.com/nvllsvm/base16-shell-preview";
description = "Browse and preview Base16 Shell themes in your terminal";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ AndersonTorres ];
};
}