nixpkgs/pkgs/tools/networking/pykms/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

93 lines
2.0 KiB
Nix
Raw Normal View History

2021-01-31 12:40:19 +00:00
{ lib
, fetchFromGitHub
, python3
, writeText
, writeShellScript
, sqlite
}:
2017-07-25 07:04:28 +00:00
let
2021-01-31 12:40:19 +00:00
pypkgs = python3.pkgs;
2017-07-25 07:04:28 +00:00
dbSql = writeText "create_pykms_db.sql" ''
CREATE TABLE clients(
clientMachineId TEXT,
machineName TEXT,
applicationId TEXT,
skuId TEXT,
licenseStatus TEXT,
lastRequestTime INTEGER,
kmsEpid TEXT,
requestCount INTEGER
);
'';
2021-01-31 12:40:19 +00:00
dbScript = writeShellScript "create_pykms_db.sh" ''
set -eEuo pipefail
2017-07-25 07:04:28 +00:00
2021-01-31 12:40:19 +00:00
db=''${1:-/var/lib/pykms/clients.db}
2017-07-25 07:04:28 +00:00
if [ ! -e $db ] ; then
2021-01-31 12:40:19 +00:00
${lib.getBin sqlite}/bin/sqlite3 $db < ${dbSql}
2017-07-25 07:04:28 +00:00
fi
2021-01-31 12:40:19 +00:00
'';
2017-07-25 07:04:28 +00:00
2021-01-31 12:40:19 +00:00
in
pypkgs.buildPythonApplication rec {
pname = "pykms";
2021-01-31 12:40:19 +00:00
version = "unstable-2021-01-25";
2017-07-25 07:04:28 +00:00
src = fetchFromGitHub {
owner = "Py-KMS-Organization";
2021-01-31 12:40:19 +00:00
repo = "py-kms";
rev = "1435c86fe4f11aa7fd42d77fa61715ca3015eeab";
hash = "sha256-9KiMbS0uKTbWSZVIv5ziIeR9c8+EKfKd20yPmjCX7GQ=";
2017-07-25 07:04:28 +00:00
};
sourceRoot = "source/py-kms";
2017-07-25 07:04:28 +00:00
propagatedBuildInputs = with pypkgs; [ systemd pytz tzlocal dnspython ];
postPatch = ''
siteDir=$out/${python3.sitePackages}
substituteInPlace pykms_DB2Dict.py \
2017-07-25 07:04:28 +00:00
--replace "'KmsDataBase.xml'" "'$siteDir/KmsDataBase.xml'"
'';
format = "other";
2017-07-25 07:04:28 +00:00
# there are no tests
doCheck = false;
installPhase = ''
runHook preInstall
mkdir -p $siteDir
2017-07-25 07:04:28 +00:00
PYTHONPATH="$PYTHONPATH:$siteDir"
2017-07-25 07:04:28 +00:00
mv * $siteDir
for b in Client Server ; do
2021-01-31 12:40:19 +00:00
makeWrapper ${python3.interpreter} $out/bin/''${b,,} \
--argv0 pykms-''${b,,} \
--add-flags $siteDir/pykms_$b.py \
--set PYTHONPATH $PYTHONPATH
2017-07-25 07:04:28 +00:00
done
install -Dm755 ${dbScript} $out/libexec/create_pykms_db.sh
2017-07-25 07:04:28 +00:00
install -Dm644 ../README.md -t $out/share/doc/pykms
2017-07-25 07:04:28 +00:00
2021-01-31 12:40:19 +00:00
${python3.interpreter} -m compileall $siteDir
2017-07-25 07:04:28 +00:00
runHook postInstall
'';
meta = with lib; {
2017-07-25 07:04:28 +00:00
description = "Windows KMS (Key Management Service) server written in Python";
homepage = "https://github.com/Py-KMS-Organization/py-kms";
2021-01-31 12:40:19 +00:00
license = licenses.unlicense;
maintainers = with maintainers; [ peterhoeg zopieux ];
2017-07-25 07:04:28 +00:00
};
}