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

9 lines
270 B
Nix

{ mach-nix, ... }:
mach-nix.mkPython {
requirements = "ldap0";
_.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";
};
}