mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
61 lines
1.1 KiB
Nix
61 lines
1.1 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 = [ ];
|
|
};
|
|
}
|