Skip to content

Commit 92cebeb

Browse files
Emery HemingwayEmery Hemingway
authored andcommitted
python312Packages.eris: init at 1.0.0
1 parent 028129d commit 92cebeb

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
lib,
3+
buildPythonPackage,
4+
fetchPypi,
5+
setuptools,
6+
aiocoap,
7+
pycryptodome,
8+
}:
9+
10+
buildPythonPackage rec {
11+
pname = "eris";
12+
version = "1.0.0";
13+
pyproject = true;
14+
src = fetchPypi {
15+
inherit pname version;
16+
hash = "sha256-aiPmf759Cd3SeKfQtqgszcKkhZPM4dNY2x9YxJFPRh0=";
17+
};
18+
build-system = [ setuptools ];
19+
dependencies = [
20+
aiocoap
21+
pycryptodome
22+
];
23+
meta = {
24+
description = "Python implementation of the Encoding for Robust Immutable Storage (ERIS)";
25+
homepage = "https://eris.codeberg.page/python-eris/";
26+
license = [ lib.licenses.agpl3Plus ];
27+
maintainers = with lib.maintainers; [ ehmry ];
28+
};
29+
}

pkgs/top-level/python-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4212,6 +4212,8 @@ self: super: with self; {
42124212

42134213
eradicate = callPackage ../development/python-modules/eradicate { };
42144214

4215+
eris = callPackage ../development/python-modules/eris { };
4216+
42154217
es-client = callPackage ../development/python-modules/es-client { };
42164218

42174219
esig = callPackage ../development/python-modules/esig { };

0 commit comments

Comments
 (0)