depot/third_party/nixpkgs/pkgs/development/python-modules/formulae/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

57 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
setuptools,
setuptools-scm,
pytestCheckHook,
numpy,
pandas,
scipy,
}:
buildPythonPackage rec {
pname = "formulae";
version = "0.5.3";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "bambinos";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-A0CI0bpoRYFAcPiNAf5haQu9BEqmBgxF7HfIl4qcML0=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
numpy
pandas
scipy
];
nativeCheckInputs = [ pytestCheckHook ];
# use assertions of form `assert pytest.approx(...)`, which is now disallowed:
disabledTests = [
"test_basic"
"test_degree"
];
pythonImportsCheck = [
"formulae"
"formulae.matrices"
];
meta = with lib; {
homepage = "https://bambinos.github.io/formulae";
description = "Formulas for mixed-effects models in Python";
changelog = "https://github.com/bambinos/formulae/releases/tag/${version}";
license = licenses.mit;
maintainers = with maintainers; [ bcdarwin ];
};
}