depot/third_party/nixpkgs/pkgs/development/python-modules/convertdate/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

44 lines
828 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pymeeus
, pytz
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "convertdate";
version = "2.4.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "fitnr";
repo = pname;
rev = "v${version}";
hash = "sha256-iOHK3UJulXJJR50nhiVgfk3bt+CAtG3BRySJ8DkBuJE=";
};
propagatedBuildInputs = [
pymeeus
pytz
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"convertdate"
];
meta = with lib; {
description = "Utils for converting between date formats and calculating holidays";
mainProgram = "censusgeocode";
homepage = "https://github.com/fitnr/convertdate";
license = licenses.mit;
maintainers = with maintainers; [ jluttine ];
};
}