Files
nixpkgs/pkgs/development/python-modules/isoduration/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

51 lines
897 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 = pname;
rev = version;
sha256 = "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 ];
};
}