nixpkgs/pkgs/development/python-modules/flask-mailman/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

47 lines
890 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, mkdocs-material-extensions
, flask
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "flask-mailman";
version = "0.3.0";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "waynerv";
repo = pname;
rev = "v${version}";
sha256 = "sha256-cfLtif+48M6fqOkBbi4PJRFpf9FRXCPesktFQky34eU=";
};
nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [
flask
mkdocs-material-extensions
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "flask_mailman" ];
meta = with lib; {
homepage = "https://github.com/waynerv/flask-mailman";
description = "Flask extension providing simple email sending capabilities.";
license = licenses.bsd3;
maintainers = with maintainers; [ gador ];
};
}