Fernando Rodrigues 05580f4b44
treewide: switch instances of lib.teams.*.members to the new meta.teams attribute
Follow-up to #394797.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
2025-04-25 22:20:17 -03:00

40 lines
738 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
python-dateutil,
pytz,
regex,
}:
buildPythonPackage rec {
pname = "datefinder";
version = "0.7.3";
format = "setuptools";
src = fetchFromGitHub {
owner = "akoumjian";
repo = "datefinder";
tag = "v${version}";
hash = "sha256-uOSwS+mHgbvEL+rTfs4Ax9NvJnhYemxFVqqDssy2i7g=";
};
propagatedBuildInputs = [
regex
pytz
python-dateutil
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "datefinder" ];
meta = {
description = "Extract datetime objects from strings";
homepage = "https://github.com/akoumjian/datefinder";
license = lib.licenses.mit;
teams = [ lib.teams.deshaw ];
};
}