57 lines
1.6 KiB
Nix
57 lines
1.6 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3Packages
|
|
, nixosTests
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "zeronet-conservancy";
|
|
version = "0.7.7";
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zeronet-conservancy";
|
|
repo = "zeronet-conservancy";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-6qBdq6DoIKZUUGflz7kWu3S3pMJB4vkGUytpU5EatP0=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
gevent msgpack base58 merkletools rsa pysocks pyasn1 websocket-client
|
|
gevent-websocket rencode bitcoinlib maxminddb pyopenssl rich defusedxml
|
|
pyaes
|
|
];
|
|
|
|
buildPhase = ''
|
|
${python3Packages.python.interpreter} -O -m compileall .
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/share
|
|
cp -r plugins src *.py $out/share/
|
|
'';
|
|
|
|
postFixup = ''
|
|
makeWrapper "$out/share/zeronet.py" "$out/bin/zeronet" \
|
|
--set PYTHONPATH "$PYTHONPATH" \
|
|
--set PATH ${python3Packages.python}/bin
|
|
'';
|
|
|
|
passthru.tests = {
|
|
nixos-test = nixosTests.zeronet-conservancy;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "A fork/continuation of the ZeroNet project";
|
|
longDescription = ''
|
|
zeronet-conservancy is a fork/continuation of ZeroNet project (that has
|
|
been abandoned by its creator) that is dedicated to sustaining existing
|
|
p2p network and developing its values of decentralization and freedom,
|
|
while gradually switching to a better designed network.
|
|
'';
|
|
homepage = "https://github.com/zeronet-conservancy/zeronet-conservancy";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ fgaz ];
|
|
};
|
|
}
|