depot/third_party/nixpkgs/pkgs/misc/base16-shell-preview/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

23 lines
668 B
Nix

{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
pname = "base16-shell-preview";
version = "0.3.0";
src = python3Packages.fetchPypi {
inherit version;
pname = "base16_shell_preview";
sha256 = "0x2fbicrcqgf2dl7dqzm14dz08vjjziabaaw33wah3v9wv4rw7jq";
};
# No tests
# If enabled, will attempt to run '__init__.py, and will fail with "/homeless-shelter" as HOME
doCheck = false;
meta = with lib; {
description = "Browse and preview Base16 Shell themes in your terminal";
homepage = "https://github.com/nvllsvm/base16-shell-preview";
license = licenses.mit;
maintainers = [ maintainers.rencire ];
};
}