File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed
development/python-modules/eris Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff 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 { };
You can’t perform that action at this time.
0 commit comments