hackens-org-configurations/machines/hackens-org/orga/authens.nix

13 lines
414 B
Nix
Raw Normal View History

2024-02-20 21:38:36 +01:00
{ lib, fetchgit, pythoncas, django, ldap, buildPythonPackage }:
2023-03-08 00:48:11 +01:00
buildPythonPackage rec {
pname = "authens";
version = "v0.1b5";
doCheck = false;
2024-02-20 21:38:36 +01:00
src = fetchgit {
2023-03-08 00:48:11 +01:00
url = "https://git.eleves.ens.fr/klub-dev-ens/authens.git";
2024-02-20 21:38:36 +01:00
rev = "58747e57b30b47f36a0ed3e7c80850ed7f1edbf9";
hash = "sha256-R0Nw212/BOPHfpspT5wzxtji1vxZ/JOuwr00naklWE8=";
2023-03-08 00:48:11 +01:00
};
propagatedBuildInputs = [ django ldap pythoncas ];
}