fix nix eval tests

This commit is contained in:
DavHau 2022-04-20 16:30:32 +02:00
parent 4048790fd8
commit 4dde445784

View file

@ -8,7 +8,10 @@ with builtins;
mach-nix.mkPython (baseArgsMkPython // { mach-nix.mkPython (baseArgsMkPython // {
packagesExtra = [ packagesExtra = [
(mach-nix.buildPythonPackage { (mach-nix.buildPythonPackage {
src = "https://gitlab.com/ae-dir/web2ldap/-/archive/v1.5.97/web2ldap-v1.5.97.tar.gz"; 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 ]; _.ldap0.buildInputs = with mach-nix.nixpkgs; [ openldap.dev cyrus_sasl.dev ];
_.ldap0.src = builtins.fetchGit { _.ldap0.src = builtins.fetchGit {
url = "https://gitlab.com/ae-dir/python-ldap0"; url = "https://gitlab.com/ae-dir/python-ldap0";