mach-nix/tests/test_underscore_override_extra.nix

23 lines
582 B
Nix
Raw Permalink Normal View History

{
2021-06-09 06:11:17 +00:00
baseArgsMkPython ? {},
baseArgsBuildPythonPackage ? {},
mach-nix ? import ../. {},
...
}:
with builtins;
2021-06-09 06:11:17 +00:00
mach-nix.mkPython (baseArgsMkPython // {
packagesExtra = [
2020-09-11 17:54:26 +00:00
(mach-nix.buildPythonPackage {
2022-04-20 14:30:32 +00:00
src = builtins.fetchGit {
url = "https://code.stroeder.com/ldap/web2ldap";
ref = "refs/tags/v1.5.97";
};
_.ldap0.buildInputs = with mach-nix.nixpkgs; [ openldap.dev cyrus_sasl.dev ];
2020-09-11 17:54:26 +00:00
_.ldap0.src = builtins.fetchGit {
url = "https://gitlab.com/ae-dir/python-ldap0";
ref = "refs/tags/v1.1.0";
};
})
];
2021-06-09 06:11:17 +00:00
})