##// END OF EJS Templates
dependencies: bind sqlite with hgsubversion
marcink -
r320:b2ca4cbc default
parent child Browse files
Show More
@@ -24,6 +24,13 b' self: super: {'
24 '';
24 '';
25 });
25 });
26
26
27 hgsubversion = super.hgsubversion.override (attrs: {
28 propagatedBuildInputs = attrs.propagatedBuildInputs ++ [
29 pkgs.sqlite
30 basePythonPackages.sqlite3
31 ];
32 });
33
27 mercurial = super.mercurial.override (attrs: {
34 mercurial = super.mercurial.override (attrs: {
28 propagatedBuildInputs = attrs.propagatedBuildInputs ++ [
35 propagatedBuildInputs = attrs.propagatedBuildInputs ++ [
29 self.python.modules.curses
36 self.python.modules.curses
@@ -83,6 +83,11 b' def test_dynamic_capabilities_uses_large'
83 assert LARGEFILES_CAPABILITY in caps
83 assert LARGEFILES_CAPABILITY in caps
84
84
85
85
86 def test_hgsubversion_import():
87 from hgsubversion import svnrepo
88 assert svnrepo
89
90
86 @pytest.fixture
91 @pytest.fixture
87 def patched_capabilities(request):
92 def patched_capabilities(request):
88 """
93 """
General Comments 0
You need to be logged in to leave comments. Login now