diff --git a/recipes/photolibrary/__init__.py b/recipes/photolibrary/__init__.py
new file mode 100644
index 0000000..4b8dd17
--- /dev/null
+++ b/recipes/photolibrary/__init__.py
@@ -0,0 +1,16 @@
+from toolchain import CythonRecipe
+
+
+class PhotoRecipe(CythonRecipe):
+    version = "master"
+    url = "https://github.com/akshayaurora/photolibrary/archive/master.zip"
+    library = "libphotolibrary.a"
+    depends = ["python"]
+    pbx_frameworks = ["UIKit", "Photos", "MobileCoreServices"]
+
+    def install(self):
+        self.install_python_package(name="photolibrary.so", is_dir=False)
+
+recipe = PhotoRecipe()
+
+