mirror of
https://gitlab.com/keys.openpgp.org/hagrid.git
synced 2025-10-06 00:23:08 +02:00
23 lines
502 B
Nix
23 lines
502 B
Nix
{ lib, python3Packages }:
|
|
|
|
python3Packages.buildPythonApplication {
|
|
pname = "wkd-domain-checker";
|
|
version = "1.0";
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
flask
|
|
publicsuffix2
|
|
requests
|
|
];
|
|
|
|
src = ./.;
|
|
|
|
meta = with lib; {
|
|
description = "WKD domain checker for hagrid wkd gateway";
|
|
homepage = "https://gitlab.com/keys.openpgp.org/hagrid";
|
|
license = with licenses; [ gpl3 ];
|
|
maintainers = with maintainers; [ valodim ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|