NixOS configuration for HPC cluster https://docs.hpc.informatik.hs-fulda.de/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
256 B

  1. { python3Packages
  2. , ...
  3. }:
  4. with python3Packages;
  5. buildPythonApplication {
  6. pname = "usermgr";
  7. version = "0.1";
  8. format = "pyproject";
  9. nativeBuildInputs = [
  10. setuptools
  11. ];
  12. propagatedBuildInputs = [
  13. click
  14. ldap3
  15. ];
  16. src = ./.;
  17. }