2016-10-17 14:10:56 +00:00
|
|
|
{ stdenv, fetchFromGitHub, python2Packages }:
|
2015-07-01 10:54:08 +00:00
|
|
|
|
2016-10-17 14:10:56 +00:00
|
|
|
python2Packages.buildPythonApplication rec {
|
2017-03-02 15:35:33 +00:00
|
|
|
name = "gitfs-${version}";
|
|
|
|
version = "0.4.5.1";
|
2015-07-01 10:54:08 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "PressLabs";
|
|
|
|
repo = "gitfs";
|
2017-03-02 15:35:33 +00:00
|
|
|
rev = version;
|
|
|
|
sha256 = "1s9ml2ryqxvzzq9mxa9y3xmzr742qxcpw9kzzbr7vm3bxgkyi074";
|
2015-07-01 10:54:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
# requirement checks are unnecessary at runtime
|
|
|
|
echo > requirements.txt
|
|
|
|
'';
|
|
|
|
|
2016-10-17 14:10:56 +00:00
|
|
|
buildInputs = with python2Packages; [ pytest pytestcov mock ];
|
|
|
|
propagatedBuildInputs = with python2Packages; [ atomiclong fusepy pygit2 ];
|
|
|
|
|
2017-03-02 15:35:33 +00:00
|
|
|
checkPhase = "py.test";
|
|
|
|
doCheck = false;
|
2015-07-01 10:54:08 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A FUSE filesystem that fully integrates with git";
|
|
|
|
longDescription = ''
|
|
|
|
A git remote repository's branch can be mounted locally,
|
|
|
|
and any subsequent changes made to the files will be
|
|
|
|
automatically committed to the remote.
|
|
|
|
'';
|
|
|
|
homepage = https://github.com/PressLabs/gitfs;
|
|
|
|
license = stdenv.lib.licenses.asl20;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.robbinch ];
|
|
|
|
};
|
2016-10-17 14:10:56 +00:00
|
|
|
}
|