summary refs log tree commit diff
path: root/pkgs/tools/filesystems
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2017-03-02 20:52:43 +0100
committerGitHub <noreply@github.com>2017-03-02 20:52:43 +0100
commit0c24151731a2f5ba4a3ae0a31294a688548db221 (patch)
treeb27d9d4b1501c4d6299e22860fd54c9a6df78aa0 /pkgs/tools/filesystems
parentcd929804a389693dba3e5e648bbf0f251e4085d6 (diff)
parent1b9875220fd8785d8c059c39e3ea2cc35c303b5d (diff)
downloadnixlib-0c24151731a2f5ba4a3ae0a31294a688548db221.tar
nixlib-0c24151731a2f5ba4a3ae0a31294a688548db221.tar.gz
nixlib-0c24151731a2f5ba4a3ae0a31294a688548db221.tar.bz2
nixlib-0c24151731a2f5ba4a3ae0a31294a688548db221.tar.lz
nixlib-0c24151731a2f5ba4a3ae0a31294a688548db221.tar.xz
nixlib-0c24151731a2f5ba4a3ae0a31294a688548db221.tar.zst
nixlib-0c24151731a2f5ba4a3ae0a31294a688548db221.zip
Merge pull request #23398 from rnhmjoj/gitfs
gitfs: 0.2.5 -> 0.4.5.1
Diffstat (limited to 'pkgs/tools/filesystems')
-rw-r--r--pkgs/tools/filesystems/gitfs/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/tools/filesystems/gitfs/default.nix b/pkgs/tools/filesystems/gitfs/default.nix
index bb652c285809..ec734e52f733 100644
--- a/pkgs/tools/filesystems/gitfs/default.nix
+++ b/pkgs/tools/filesystems/gitfs/default.nix
@@ -1,13 +1,14 @@
 { stdenv, fetchFromGitHub, python2Packages }:
 
 python2Packages.buildPythonApplication rec {
-  name = "gitfs-0.2.5";
+  name = "gitfs-${version}";
+  version = "0.4.5.1";
 
   src = fetchFromGitHub {
     owner = "PressLabs";
     repo = "gitfs";
-    rev = "495c6c52ec3573294ba7b8426ed794eb466cbb82";
-    sha256 = "04yh6b5ivbviqy5k2768ag75cd5kr8k70ar0d801yvc8hnijvphk";
+    rev = version;
+    sha256 = "1s9ml2ryqxvzzq9mxa9y3xmzr742qxcpw9kzzbr7vm3bxgkyi074";
   };
 
   patchPhase = ''
@@ -18,9 +19,8 @@ python2Packages.buildPythonApplication rec {
   buildInputs = with python2Packages; [ pytest pytestcov mock ];
   propagatedBuildInputs = with python2Packages; [ atomiclong fusepy pygit2 ];
 
-  checkPhase = ''
-    py.test
-  '';
+  checkPhase = "py.test";
+  doCheck = false;
 
   meta = {
     description = "A FUSE filesystem that fully integrates with git";