mach-nix/tests/test_underscore_override_extra.nix
2020-10-07 23:23:52 +07:00

13 lines
420 B
Nix

{ mach-nix, ... }:
mach-nix.mkPython {
extra_pkgs = [
(mach-nix.buildPythonPackage {
src = "https://gitlab.com/ae-dir/web2ldap/-/archive/v1.5.97/web2ldap-v1.5.97.tar.gz";
_.ldap0.buildInputs = with mach-nix.nixpkgs; [ openldap.dev cyrus_sasl.dev ];
_.ldap0.src = builtins.fetchGit {
url = "https://gitlab.com/ae-dir/python-ldap0";
ref = "refs/tags/v1.1.0";
};
})
];
}