lol

python3Packages.cardano-tools: init at 2.1.0

t4ccer 8b4ce134 784d9197

+39
+37
pkgs/development/python-modules/cardano-tools/default.nix
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchPypi, 5 + poetry-core, 6 + # Python deps 7 + requests, 8 + pexpect, 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "cardano-tools"; 13 + version = "2.1.0"; 14 + pyproject = true; 15 + 16 + src = fetchPypi { 17 + pname = "cardano_tools"; 18 + inherit version; 19 + hash = "sha256-RFyKXHafV+XgRJSsTjASCCw9DxvZqertf4NNN616Bp4="; 20 + }; 21 + 22 + build-system = [ poetry-core ]; 23 + 24 + dependencies = [ 25 + requests 26 + pexpect 27 + ]; 28 + 29 + pythonImportsCheck = [ "cardano_tools" ]; 30 + 31 + meta = with lib; { 32 + description = "Python module for interfacing with the Cardano blockchain"; 33 + homepage = "https://gitlab.com/viperscience/cardano-tools"; 34 + license = licenses.asl20; 35 + maintainers = with maintainers; [ t4ccer ]; 36 + }; 37 + }
+2
pkgs/top-level/python-packages.nix
··· 2102 2102 2103 2103 carbon = callPackage ../development/python-modules/carbon { }; 2104 2104 2105 + cardano-tools = callPackage ../development/python-modules/cardano-tools { }; 2106 + 2105 2107 cardimpose = callPackage ../development/python-modules/cardimpose { }; 2106 2108 2107 2109 cart = callPackage ../development/python-modules/cart { };