gitfs: use python2

This commit is contained in:
Frederik Rietdijk 2016-10-17 16:10:56 +02:00
parent fc9e2b60b5
commit af11ff4cdd

View file

@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, pythonPackages }:
{ stdenv, fetchFromGitHub, python2Packages }:
pythonPackages.buildPythonApplication rec {
python2Packages.buildPythonApplication rec {
name = "gitfs-0.2.5";
src = fetchFromGitHub {
@ -15,7 +15,12 @@ pythonPackages.buildPythonApplication rec {
echo > requirements.txt
'';
propagatedBuildInputs = with pythonPackages; [ atomiclong fusepy pygit2 ];
buildInputs = with python2Packages; [ pytest pytestcov mock ];
propagatedBuildInputs = with python2Packages; [ atomiclong fusepy pygit2 ];
checkPhase = ''
py.test
'';
meta = {
description = "A FUSE filesystem that fully integrates with git";
@ -29,4 +34,4 @@ pythonPackages.buildPythonApplication rec {
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.robbinch ];
};
}
}