summary refs log tree commit diff
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@higgsboson.tk>2016-09-28 22:08:50 +0200
committerGitHub <noreply@github.com>2016-09-28 22:08:50 +0200
commit5cf8d642025045211b8dd29967d78a1bf547e002 (patch)
tree9c3ac17b15211b0ba7a1e7ee1e92c1db2d536d9d
parent299ef14cb117f6bf79be83fc0471ec2e0409c1e1 (diff)
parent6aea928962b4a9b23ff5377a9fdc506f492f08bb (diff)
downloadnixlib-5cf8d642025045211b8dd29967d78a1bf547e002.tar
nixlib-5cf8d642025045211b8dd29967d78a1bf547e002.tar.gz
nixlib-5cf8d642025045211b8dd29967d78a1bf547e002.tar.bz2
nixlib-5cf8d642025045211b8dd29967d78a1bf547e002.tar.lz
nixlib-5cf8d642025045211b8dd29967d78a1bf547e002.tar.xz
nixlib-5cf8d642025045211b8dd29967d78a1bf547e002.tar.zst
nixlib-5cf8d642025045211b8dd29967d78a1bf547e002.zip
Merge pull request #19019 from k0ral/nixos-unstable
Add grip python package
-rw-r--r--pkgs/top-level/python-packages.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 3687d4b6789f..58666094a93d 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -7016,6 +7016,25 @@ in modules // {
     };
   };
 
+  grip = buildPythonPackage rec {
+    version = "4.3.2";
+    name = "grip-${version}";
+
+    src = pkgs.fetchurl {
+      url = "https://files.pythonhosted.org/packages/8b/9d/698a7a3a8b57c28eacac27f269c9d0da228d20ee734edbe9451e3e0f7cde/${name}.zip";
+      sha256 = "0sr6srp4liqjs6hxcy9kp8g5dzbnyfmwcsy2cn6qszkpp9x25w70";
+    };
+
+    propagatedBuildInputs = with self; [ docopt flask markdown path-and-address pygments requests2 ];
+
+    meta = with stdenv.lib; {
+      description = "Preview GitHub Markdown files like Readme locally before committing them";
+      homepage = https://github.com/joeyespo/grip;
+      license = licenses.mit;
+      maintainers = with maintainers; [ koral ];
+    };
+  };
+
   gst-python = callPackage ../development/libraries/gstreamer/python {
     gst-plugins-base = pkgs.gst_all_1.gst-plugins-base;
   };
@@ -7977,6 +7996,24 @@ in modules // {
     };
   };
 
+  path-and-address = buildPythonPackage rec {
+    version = "2.0.1";
+    name = "path-and-address-${version}";
+
+    src = pkgs.fetchurl {
+      url = "https://files.pythonhosted.org/packages/2b/b5/749fab14d9e84257f3b0583eedb54e013422b6c240491a4ae48d9ea5e44f/${name}.zip";
+      sha256 = "1dviac24s0gm7ka2fwjjb25j9l2idc45zkgl662xx8mkhbcn6qz9";
+    };
+
+    meta = {
+      description = "Functions for server CLI applications used by humans";
+      homepage = https://github.com/joeyespo/path-and-address;
+      license = licenses.mit;
+      maintainers = with maintainers; [ koral];
+    };
+  };
+      
+
   pdfminer = buildPythonPackage rec {
     version = "20140328";
     name = "pdfminer-${version}";