about summary refs log tree commit diff
path: root/users/glittershark/emacs.d/snippets/nix-mode/pythonPackage
diff options
context:
space:
mode:
Diffstat (limited to 'users/glittershark/emacs.d/snippets/nix-mode/pythonPackage')
-rw-r--r--users/glittershark/emacs.d/snippets/nix-mode/pythonPackage16
1 files changed, 0 insertions, 16 deletions
diff --git a/users/glittershark/emacs.d/snippets/nix-mode/pythonPackage b/users/glittershark/emacs.d/snippets/nix-mode/pythonPackage
deleted file mode 100644
index 0a74c21e18..0000000000
--- a/users/glittershark/emacs.d/snippets/nix-mode/pythonPackage
+++ /dev/null
@@ -1,16 +0,0 @@
-# key: pypkg
-# name: pythonPackage
-# condition: t
-# --
-${1:pname} = buildPythonPackage rec {
-           name = "\${pname}-\${version}";
-           pname = "$1";
-           version = "${2:1.0.0}";
-           src = fetchPypi {
-               inherit pname version;
-               sha256 = "0000000000000000000000000000000000000000000000000000";
-           };
-           propagatedBuildInputs = with pythonSelf; [
-               $3
-           ];
-};
\ No newline at end of file