python312Packages.eris: init at 1.0.0
This commit is contained in:
parent
028129d06d
commit
92cebeba0a
29
pkgs/development/python-modules/eris/default.nix
Normal file
29
pkgs/development/python-modules/eris/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{
|
||||
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 ];
|
||||
maintainers = with lib.maintainers; [ ehmry ];
|
||||
};
|
||||
}
|
@ -4212,6 +4212,8 @@ self: super: with self; {
|
||||
|
||||
eradicate = callPackage ../development/python-modules/eradicate { };
|
||||
|
||||
eris = callPackage ../development/python-modules/eris { };
|
||||
|
||||
es-client = callPackage ../development/python-modules/es-client { };
|
||||
|
||||
esig = callPackage ../development/python-modules/esig { };
|
||||
|
Loading…
x
Reference in New Issue
Block a user