gitfs: 0.2.5 -> 0.4.5.1

This commit is contained in:
rnhmjoj 2017-03-02 16:35:33 +01:00
parent ab6d358ebf
commit 1b9875220f
No known key found for this signature in database
GPG Key ID: 362BB82B7E496B7C

View File

@ -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";