83405b6dd2
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
63 lines
1.1 KiB
Nix
63 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, hatchling
|
|
, hatch-vcs
|
|
, git
|
|
, astor
|
|
, interface-meta
|
|
, numpy
|
|
, pandas
|
|
, scipy
|
|
, sympy
|
|
, wrapt
|
|
, typing-extensions
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "formulaic";
|
|
version = "0.5.2";
|
|
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "matthewwardrop";
|
|
repo = "formulaic";
|
|
rev = "v${version}";
|
|
hash = "sha256-sIvHTuUS/nkcDjRgZCoEOY2negIOsarzH0PeXJsavWc=";
|
|
};
|
|
|
|
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
|
|
|
nativeBuildInputs = [
|
|
hatchling
|
|
hatch-vcs
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
astor
|
|
numpy
|
|
pandas
|
|
scipy
|
|
wrapt
|
|
typing-extensions
|
|
interface-meta
|
|
sympy
|
|
];
|
|
|
|
pythonImportsCheck = [ "formulaic" ];
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
disabledTestPaths = [
|
|
"tests/transforms/test_poly.py"
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://matthewwardrop.github.io/formulaic/";
|
|
description = "High-performance implementation of Wilkinson formulas for";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ swflint ];
|
|
};
|
|
}
|