fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
36 lines
723 B
Nix
36 lines
723 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
# Python deps
|
|
requests,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "blockfrost-python";
|
|
version = "0.6.0";
|
|
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "blockfrost";
|
|
repo = "blockfrost-python";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-mN26QXxizDR+o2V5C2MlqVEbRns1BTmwZdUnnHNcFzw=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
setuptools
|
|
];
|
|
|
|
pythonImportsCheck = [ "blockfrost" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python SDK for the Blockfrost.io API";
|
|
homepage = "https://github.com/blockfrost/blockfrost-python";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ t4ccer ];
|
|
};
|
|
}
|