blob: 6163e0b0716d21ac4b6289e97f0c94859402d4e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
# Python deps
requests,
pexpect,
}:
buildPythonPackage rec {
pname = "cardano-tools";
version = "2.1.0";
pyproject = true;
src = fetchPypi {
pname = "cardano_tools";
inherit version;
hash = "sha256-RFyKXHafV+XgRJSsTjASCCw9DxvZqertf4NNN616Bp4=";
};
build-system = [ poetry-core ];
dependencies = [
requests
pexpect
];
pythonImportsCheck = [ "cardano_tools" ];
meta = {
description = "Python module for interfacing with the Cardano blockchain";
homepage = "https://gitlab.com/viperscience/cardano-tools";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ aciceri ];
};
}
|