summaryrefslogtreecommitdiff
path: root/pkgs/find-libpython.nix
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2023-06-11 20:12:29 -0600
committerAlejandro Soto <alejandro@34project.org>2023-06-11 20:12:29 -0600
commit07bf05a7869c88c27912833c1db942f8fc849f4d (patch)
treeb32a11e146884bcee04ef2dd5702b45e89699424 /pkgs/find-libpython.nix
parent905a306a705fc7bf9f0d03945bfe692c530dd05e (diff)
pkgs: add existing derivations written for other projects
Diffstat (limited to '')
-rw-r--r--pkgs/find-libpython.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/find-libpython.nix b/pkgs/find-libpython.nix
new file mode 100644
index 0000000..80da67f
--- /dev/null
+++ b/pkgs/find-libpython.nix
@@ -0,0 +1,13 @@
+{ buildPythonPackage, fetchPypi }:
+let
+ pname = "find_libpython";
+ version = "0.3.0";
+in
+buildPythonPackage {
+ inherit pname version;
+
+ src = fetchPypi {
+ inherit pname version;
+ sha256 = "sha256-bn/l2a9/rW3AZstVFaDpyQpx8f6yuy+OTNu0+DJ26eU=";
+ };
+}