Files
nixpkgs/pkgs/development/python-modules/genie-partner-sdk/default.nix
Martin Weinelt 8ea6bde88d treewide: prune pythonOlder 3.10/3.11
This is a post 3.10 removal cleanup.
2026-02-15 04:33:54 +01:00

36 lines
728 B
Nix

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