depot/third_party/nixpkgs/pkgs/development/python-modules/genie-partner-sdk/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

38 lines
790 B
Nix

{
lib,
buildPythonPackage,
pythonOlder,
hatchling,
aiohttp,
fetchPypi,
}:
buildPythonPackage rec {
pname = "genie-partner-sdk";
version = "1.0.3";
pyproject = true;
disabled = pythonOlder "3.11";
src = fetchPypi {
inherit version;
pname = "genie_partner_sdk";
hash = "sha256-/Pu0pULepRpAdUfu2SQjK4xCSe3FWWNT9AqZEASoZSE=";
};
nativeBuildInputs = [ hatchling ];
propagatedBuildInputs = [ aiohttp ];
# No tests
doCheck = false;
pythonImportsCheck = [ "genie_partner_sdk" ];
meta = with lib; {
description = "An SDK to interact with the AladdinConnect (or OHD) partner API";
homepage = "https://github.com/Genie-Garage/aladdin-python-sdk";
license = licenses.unfree;
maintainers = with maintainers; [ jamiemagee ];
};
}