summaryrefslogtreecommitdiff
path: root/pkgs/tools/filesystems/gitfs/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/filesystems/gitfs/default.nix')
-rw-r--r--pkgs/tools/filesystems/gitfs/default.nix13
1 files changed, 9 insertions, 4 deletions
diff --git a/pkgs/tools/filesystems/gitfs/default.nix b/pkgs/tools/filesystems/gitfs/default.nix
index 31c4ceccbc09..bb652c285809 100644
--- a/pkgs/tools/filesystems/gitfs/default.nix
+++ b/pkgs/tools/filesystems/gitfs/default.nix
@@ -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 ];
};
-} \ No newline at end of file
+}