tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
python3Packages.cardano-tools: init at 2.1.0
t4ccer
1 year ago
8b4ce134
784d9197
+39
2 changed files
expand all
collapse all
unified
split
pkgs
development
python-modules
cardano-tools
default.nix
top-level
python-packages.nix
+37
pkgs/development/python-modules/cardano-tools/default.nix
···
1
1
+
{
2
2
+
lib,
3
3
+
buildPythonPackage,
4
4
+
fetchPypi,
5
5
+
poetry-core,
6
6
+
# Python deps
7
7
+
requests,
8
8
+
pexpect,
9
9
+
}:
10
10
+
11
11
+
buildPythonPackage rec {
12
12
+
pname = "cardano-tools";
13
13
+
version = "2.1.0";
14
14
+
pyproject = true;
15
15
+
16
16
+
src = fetchPypi {
17
17
+
pname = "cardano_tools";
18
18
+
inherit version;
19
19
+
hash = "sha256-RFyKXHafV+XgRJSsTjASCCw9DxvZqertf4NNN616Bp4=";
20
20
+
};
21
21
+
22
22
+
build-system = [ poetry-core ];
23
23
+
24
24
+
dependencies = [
25
25
+
requests
26
26
+
pexpect
27
27
+
];
28
28
+
29
29
+
pythonImportsCheck = [ "cardano_tools" ];
30
30
+
31
31
+
meta = with lib; {
32
32
+
description = "Python module for interfacing with the Cardano blockchain";
33
33
+
homepage = "https://gitlab.com/viperscience/cardano-tools";
34
34
+
license = licenses.asl20;
35
35
+
maintainers = with maintainers; [ t4ccer ];
36
36
+
};
37
37
+
}
+2
pkgs/top-level/python-packages.nix
···
2102
2102
2103
2103
carbon = callPackage ../development/python-modules/carbon { };
2104
2104
2105
2105
+
cardano-tools = callPackage ../development/python-modules/cardano-tools { };
2106
2106
+
2105
2107
cardimpose = callPackage ../development/python-modules/cardimpose { };
2106
2108
2107
2109
cart = callPackage ../development/python-modules/cart { };