Files
nixpkgs/pkgs/development/python-modules/kotsu/default.nix
T
Martin Weinelt baf617aae7 python3Packages.kotsu: 0.3.3 -> 0.4.0
https://github.com/datavaluepeople/kotsu/blob/v0.4.0/CHANGELOG.md

This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:24 +01:00

46 lines
936 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pandas,
typing-extensions,
pytestCheckHook,
pytest-cov-stub,
pytest-mock,
scikit-learn,
}:
buildPythonPackage rec {
pname = "kotsu";
version = "0.4.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "datavaluepeople";
repo = "kotsu";
tag = "v${version}";
hash = "sha256-7bRrHowRKq3xiBiAkfS4ZL9PXHIUmZc99q9pHex9BLg=";
};
propagatedBuildInputs = [
pandas
typing-extensions
];
nativeCheckInputs = [
pytestCheckHook
pytest-cov-stub
pytest-mock
scikit-learn
];
pythonImportsCheck = [ "kotsu" ];
meta = {
description = "Lightweight framework for structured and repeatable model validation";
homepage = "https://github.com/datavaluepeople/kotsu";
changelog = "https://github.com/datavaluepeople/kotsu/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = [ ];
};
}