nixpkgs-suyu/pkgs/tools/filesystems/gitfs/default.nix
R. RyanTM dd798feaa5 gitfs: 0.4.5.1 -> 0.5.1
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/gitfs/versions
2019-10-21 14:28:43 -07:00

37 lines
1 KiB
Nix

{ stdenv, fetchFromGitHub, python2Packages }:
python2Packages.buildPythonApplication rec {
pname = "gitfs";
version = "0.5.1";
src = fetchFromGitHub {
owner = "PressLabs";
repo = "gitfs";
rev = version;
sha256 = "04plfdaai7bvnz39lw0yyda6ahbwx0wkws9fjnxxx43dzm3sjl98";
};
patchPhase = ''
# requirement checks are unnecessary at runtime
echo > requirements.txt
'';
buildInputs = with python2Packages; [ pytest pytestcov mock ];
propagatedBuildInputs = with python2Packages; [ atomiclong fusepy pygit2 ];
checkPhase = "py.test";
doCheck = false;
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 ];
};
}