2020-02-05 23:20:47 +00:00
|
|
|
{ stdenv, fetchFromGitHub, python3Packages }:
|
2015-07-01 10:54:08 +00:00
|
|
|
|
2020-02-05 23:20:47 +00:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2019-08-31 11:41:23 +00:00
|
|
|
pname = "gitfs";
|
2019-11-26 01:46:26 +00:00
|
|
|
version = "0.5.2";
|
2015-07-01 10:54:08 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "PressLabs";
|
|
|
|
repo = "gitfs";
|
2017-03-02 15:35:33 +00:00
|
|
|
rev = version;
|
2019-11-26 01:46:26 +00:00
|
|
|
sha256 = "1jzwdwan8ndvp2lw6j7zbvg5k9rgf2d8dcxjrwc6bwyk59xdxn4p";
|
2015-07-01 10:54:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
patchPhase = ''
|
|
|
|
# requirement checks are unnecessary at runtime
|
|
|
|
echo > requirements.txt
|
|
|
|
'';
|
|
|
|
|
2020-02-05 23:20:47 +00:00
|
|
|
checkInputs = with python3Packages; [ pytest pytestcov mock ];
|
|
|
|
propagatedBuildInputs = with python3Packages; [ atomiclong fusepy pygit2 six ];
|
2016-10-17 14:10:56 +00:00
|
|
|
|
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.
|
|
|
|
'';
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/PressLabs/gitfs";
|
2015-07-01 10:54:08 +00:00
|
|
|
license = stdenv.lib.licenses.asl20;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.robbinch ];
|
|
|
|
};
|
2016-10-17 14:10:56 +00:00
|
|
|
}
|