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

60 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
cryptography,
fetchFromGitHub,
more-itertools,
pendulum,
pyjwt,
pytestCheckHook,
pythonOlder,
pytz,
requests,
responses,
setuptools,
typing-extensions,
zeep,
}:
buildPythonPackage rec {
pname = "simple-salesforce";
version = "1.12.6";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "simple-salesforce";
repo = "simple-salesforce";
rev = "refs/tags/v${version}";
hash = "sha256-nrfIyXftS2X2HuuLFRZpWLz/IbRasqUzv+r/HvhxfAw=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
cryptography
more-itertools
pendulum
pyjwt
requests
typing-extensions
zeep
];
nativeCheckInputs = [
pytestCheckHook
pytz
responses
];
pythonImportsCheck = [ "simple_salesforce" ];
meta = with lib; {
description = "Very simple Salesforce.com REST API client for Python";
homepage = "https://github.com/simple-salesforce/simple-salesforce";
changelog = "https://github.com/simple-salesforce/simple-salesforce/blob/v${version}/CHANGES";
license = licenses.asl20;
maintainers = with maintainers; [ ];
};
}