{ lib, buildPythonPackage, fetchPypi, setuptools, requests, conjure-python-client, }: buildPythonPackage rec { pname = "nominal-api"; version = "0.806.0"; pyproject = true; # nixpkgs-update: no auto update src = fetchPypi { inherit version; pname = "nominal_api"; hash = "sha256-V9zncQFNBi3MtgBHmwY4SoSgI9cjQuBt90PeRHjaXsw="; }; build-system = [ setuptools ]; dependencies = [ requests conjure-python-client ]; pythonImportsCheck = [ "nominal_api" ]; meta = { description = "Generated conjure client for the Nominal API"; homepage = "https://pypi.org/project/nominal-api/"; maintainers = with lib.maintainers; [ alkasm ]; license = lib.licenses.unfree; }; }