mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-14 14:16:35 +01:00
82 lines
1.6 KiB
Nix
82 lines
1.6 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
isPyPy,
|
|
|
|
# build-system
|
|
poetry-core,
|
|
rustPlatform,
|
|
|
|
# native dependencies
|
|
iconv,
|
|
|
|
# dependencies
|
|
python-dateutil,
|
|
time-machine,
|
|
tzdata,
|
|
|
|
# tests
|
|
pytestCheckHook,
|
|
pytz,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pendulum";
|
|
version = "3.1.0-unstable-2025-10-28";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sdispater";
|
|
repo = "pendulum";
|
|
rev = "2982f25feaad2e58ad1530d3b53cc30fc1c82bd6";
|
|
hash = "sha256-1ULvlWLZx3z5eGmWJfrN46x0ohJ+mAxipm6l6rykGPY=";
|
|
};
|
|
|
|
cargoRoot = "rust";
|
|
cargoDeps = rustPlatform.fetchCargoVendor {
|
|
inherit pname version src;
|
|
sourceRoot = "${src.name}/rust";
|
|
hash = "sha256-Ozg+TW/woJsqmbmyDsgdMua3Lmnn+KBvBhd9kVik3XY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
rustPlatform.maturinBuildHook
|
|
rustPlatform.cargoSetupHook
|
|
];
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ iconv ];
|
|
|
|
propagatedBuildInputs = [
|
|
python-dateutil
|
|
tzdata
|
|
]
|
|
++ lib.optionals (!isPyPy) [
|
|
time-machine
|
|
];
|
|
|
|
pythonImportsCheck = [ "pendulum" ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
pytz
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
"tests/benchmarks"
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
# PermissionError: [Errno 1] Operation not permitted: '/etc/localtime'
|
|
"tests/testing/test_time_travel.py"
|
|
];
|
|
|
|
meta = {
|
|
description = "Python datetimes made easy";
|
|
homepage = "https://github.com/sdispater/pendulum";
|
|
changelog = "https://github.com/sdispater/pendulum/blob/${src.rev}/CHANGELOG.md";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|