Release notes: https://goauthentik.io/docs/releases/2024.2 Flake lock file updates: • Updated input 'authentik-src': 'github:goauthentik/authentik/e095e9f694d2a427940bc8616bc4025fef502a8b' (2024-01-29) → 'github:goauthentik/authentik/310983a4d027174afe40e6db908cdfdebf1182b8' (2024-02-21) • Updated input 'poetry2nix': 'github:nix-community/poetry2nix/4eb2ac54029af42a001c9901194e9ce19cbd8a40' (2024-02-06) → 'github:nix-community/poetry2nix/403d923ea8e2e6cedce3a0f04a9394c4244cb806' (2024-02-17)
92 lines
2.9 KiB
Nix
92 lines
2.9 KiB
Nix
pkgs:
|
|
[
|
|
# modules missing only setuptools
|
|
(final: prev:
|
|
(builtins.listToAttrs (map (name: {
|
|
inherit name;
|
|
value = prev.${name}.overrideAttrs (oA: {
|
|
nativeBuildInputs = (oA.nativeBuildInputs or []) ++ [ final.setuptools ];
|
|
});
|
|
}) [
|
|
"bump2version"
|
|
"dumb-init"
|
|
"opencontainers"
|
|
"pytest-github-actions-annotate-failures"
|
|
"drf-jsonschema-serializer"
|
|
"pydantic-scim"
|
|
"django-tenants"
|
|
]))
|
|
)
|
|
(final: prev: {
|
|
ruff = null; # don't need a linter for the package %), groups = [] && checkGroups = [] doesn't seem to work
|
|
django-otp = prev.django-otp.overrideAttrs (oA: {
|
|
buildInputs = [ final.hatchling ];
|
|
});
|
|
service-identity = prev.service-identity.overrideAttrs (oA: {
|
|
buildInputs = [
|
|
final.hatchling
|
|
final.hatch-fancy-pypi-readme
|
|
final.hatch-vcs
|
|
];
|
|
});
|
|
pyrad = prev.pyrad.overrideAttrs (oA: {
|
|
nativeBuildInputs = oA.nativeBuildInputs ++ [
|
|
final.poetry
|
|
];
|
|
});
|
|
xmlsec = prev.xmlsec.overridePythonAttrs (oA: {
|
|
nativeBuildInputs = oA.nativeBuildInputs ++ [ final.setuptools final.pkgconfig ];
|
|
buildInputs = [ pkgs.xmlsec.dev pkgs.xmlsec pkgs.libxml2 pkgs.libtool ];
|
|
});
|
|
opencontainers = prev.opencontainers.overrideAttrs (oA: {
|
|
nativeBuildInputs = oA.nativeBuildInputs ++ [
|
|
final.pytest-runner final.pytest
|
|
];
|
|
});
|
|
urllib3-secure-extra = prev.urllib3-secure-extra.overrideAttrs (oA: {
|
|
buildInputs = [ final.flit-core ];
|
|
});
|
|
pydantic-scim = prev.pydantic-scim.overrideAttrs (oA: {
|
|
nativeBuildInputs = oA.nativeBuildInputs ++ [
|
|
final.setuptools-scm
|
|
];
|
|
});
|
|
psycopg-c = prev.psycopg-c.overrideAttrs (oA: {
|
|
nativeBuildInputs = oA.nativeBuildInputs ++ [
|
|
final.setuptools
|
|
final.tomli
|
|
final.cython_3
|
|
pkgs.postgresql
|
|
];
|
|
});
|
|
psycopg = prev.psycopg.overrideAttrs (oA: {
|
|
propagatedBuildInputs = oA.propagatedBuildInputs ++ [
|
|
final.psycopg-c
|
|
];
|
|
pythonImportsCheck = [
|
|
"psycopg"
|
|
"psycopg_c"
|
|
];
|
|
});
|
|
twisted = prev.twisted.overrideAttrs (oA: {
|
|
buildInputs = [
|
|
final.hatchling
|
|
final.hatch-fancy-pypi-readme
|
|
];
|
|
});
|
|
django-filter = prev.django-filter.overrideAttrs (oA: {
|
|
nativeBuildInputs = oA.nativeBuildInputs ++ [
|
|
final.flit-core
|
|
];
|
|
});
|
|
cryptography = prev.cryptography.overridePythonAttrs (oA: {
|
|
cargoDeps = pkgs.rustPlatform.fetchCargoTarball {
|
|
src = oA.src;
|
|
sourceRoot = "${oA.pname}-${oA.version}/src/rust";
|
|
name = "${oA.pname}-${oA.version}";
|
|
sha256 = "sha256-h6TjGcn81TSQuu+16ty60e6P07uH2gXa3VmG+Vy3eu0=";
|
|
};
|
|
});
|
|
}
|
|
)
|
|
]
|