Files
nixpkgs/pkgs/development/python-modules/eris/default.nix
T
Wolfgang Walther f09f724ef8 maintainers: drop ehmry
This user is blocked since May 2025, thus can't maintain any packages
anymore.
2025-08-31 16:53:44 +02:00

29 lines
590 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
aiocoap,
pycryptodome,
}:
buildPythonPackage rec {
pname = "eris";
version = "1.0.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-aiPmf759Cd3SeKfQtqgszcKkhZPM4dNY2x9YxJFPRh0=";
};
build-system = [ setuptools ];
dependencies = [
aiocoap
pycryptodome
];
meta = {
description = "Python implementation of the Encoding for Robust Immutable Storage (ERIS)";
homepage = "https://eris.codeberg.page/python-eris/";
license = [ lib.licenses.agpl3Plus ];
};
}