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

70 lines
1.3 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
, beartype
, invoke
, mypy
, numpy
, pandas
, feedparser
, typeguard
}:
buildPythonPackage rec {
pname = "nptyping";
version = "2.4.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "ramonhagenaars";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-jV2MVMP/tlYN3djoViemGaJyzREoOJJamwG97WFhIvc=";
};
propagatedBuildInputs = [
numpy
];
nativeCheckInputs = [
beartype
feedparser
invoke
mypy
pandas
pytestCheckHook
typeguard
];
disabledTests = [
# tries to download data
"test_pandas_stubs_fork_is_synchronized"
];
disabledTestPaths = [
# missing pyright import:
"tests/test_pyright.py"
# can't find mypy stubs for pandas:
"tests/test_mypy.py"
"tests/pandas_/test_mypy_dataframe.py"
# tries to build wheel of package, broken/unnecessary under Nix:
"tests/test_wheel.py"
];
pythonImportsCheck = [
"nptyping"
];
meta = with lib; {
description = "Type hints for numpy";
homepage = "https://github.com/ramonhagenaars/nptyping";
changelog = "https://github.com/ramonhagenaars/nptyping/blob/v${version}/HISTORY.md";
license = licenses.mit;
maintainers = with maintainers; [ bcdarwin ];
};
}