about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/ba/base16-shell-preview/package.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/by-name/ba/base16-shell-preview/package.nix')
-rw-r--r--nixpkgs/pkgs/by-name/ba/base16-shell-preview/package.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/by-name/ba/base16-shell-preview/package.nix b/nixpkgs/pkgs/by-name/ba/base16-shell-preview/package.nix
new file mode 100644
index 000000000000..bd1c8508023d
--- /dev/null
+++ b/nixpkgs/pkgs/by-name/ba/base16-shell-preview/package.nix
@@ -0,0 +1,29 @@
+{ 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 ];
+  };
+}