Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
48 lines
901 B
Nix
48 lines
901 B
Nix
{
|
|
lib,
|
|
arrow,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
hypothesis,
|
|
isodate,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "isoduration";
|
|
version = "20.11.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bolsote";
|
|
repo = "isoduration";
|
|
rev = version;
|
|
hash = "sha256-6LqsH+3V/K0s2YD1gvmelo+cCH+yCAmmyTYGhUegVdk=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ arrow ];
|
|
|
|
nativeCheckInputs = [
|
|
hypothesis
|
|
isodate
|
|
pytestCheckHook
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# We don't care about benchmarks
|
|
"tests/test_benchmark.py"
|
|
];
|
|
|
|
pythonImportsCheck = [ "isoduration" ];
|
|
|
|
meta = with lib; {
|
|
description = "Library for operations with ISO 8601 durations";
|
|
homepage = "https://github.com/bolsote/isoduration";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|