Skip to content

Commit

Permalink
gitfs: 0.2.5 -> 0.4.5.1
Browse files Browse the repository at this point in the history
(cherry picked from commit 1b98752)
  • Loading branch information
rnhmjoj authored and dezgeg committed Mar 2, 2017
1 parent b12aacc commit 5435ad7
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions 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 = ''
Expand All @@ -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";
Expand Down

0 comments on commit 5435ad7

Please sign in to comment.