depot/third_party/nixpkgs/pkgs/development/python-modules/notifications-python-client/default.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

61 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
docopt,
fetchFromGitHub,
freezegun,
mock,
pyjwt,
pytest-mock,
pytestCheckHook,
pythonOlder,
requests,
requests-mock,
setuptools,
}:
buildPythonPackage rec {
pname = "notifications-python-client";
version = "10.0.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "alphagov";
repo = "notifications-python-client";
rev = "refs/tags/${version}";
hash = "sha256-qjiI+aTJLOz3XSTHKrpZrJ/wg1xP+V7ww0//xX3Kf1E=";
};
postPatch = ''
substituteInPlace setup.py \
--replace-fail "pytest-runner" ""
'';
build-system = [ setuptools ];
dependencies = [
docopt
pyjwt
requests
];
nativeCheckInputs = [
freezegun
mock
pytest-mock
pytestCheckHook
requests-mock
];
pythonImportsCheck = [ "notifications_python_client" ];
meta = with lib; {
description = "Python client for the GOV.UK Notify API";
homepage = "https://github.com/alphagov/notifications-python-client";
changelog = "https://github.com/alphagov/notifications-python-client/blob/${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}