chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / ba / base16-shell-preview / package.nix
blobe047c7e88b2115eeda7ccb5d5f34aaf971ae59cc
1 { lib
2 , python3Packages
3 , fetchPypi
4 }:
6 let
7   pname = "base16-shell-preview";
8   version = "1.0.0";
9 in
10 python3Packages.buildPythonApplication {
11   inherit pname version;
13   src = fetchPypi {
14     inherit version;
15     pname = "${lib.replaceStrings ["-"] ["_"] pname}";
16     hash = "sha256-retnbxjdjo+NeA1B0+jpM9kToAX/Rh0ze0yNF9AfDiU=";
17   };
19   # If enabled, it will attempt to run '__init__.py, failing by trying to write
20   # at "/homeless-shelter" as HOME
21   doCheck = false;
23   meta = {
24     homepage = "https://github.com/nvllsvm/base16-shell-preview";
25     description = "Browse and preview Base16 Shell themes in your terminal";
26     mainProgram = "base16-shell-preview";
27     license = lib.licenses.mit;
28     maintainers = with lib.maintainers; [ AndersonTorres ];
29   };