python312Packages.truncnorm: init at 0.0.2

This commit is contained in:
TomaSajt
2024-05-14 00:12:13 +02:00
parent 9f7053ffc1
commit 90abd0a1b2
2 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
setuptools-scm,
numpy,
scipy,
}:
buildPythonPackage rec {
pname = "truncnorm";
version = "0.0.2";
pyproject = true;
src = fetchFromGitHub {
owner = "jluttine";
repo = "truncnorm";
rev = "refs/tags/${version}";
hash = "sha256-F+RBXN/pjxmHf26/Vxptz1NbF58eqU018l3zmepSoJk=";
};
build-system = [
setuptools
setuptools-scm
];
dependencies = [
numpy
scipy
];
# No checks
doCheck = false;
pythonImportsCheck = [ "truncnorm" ];
meta = with lib; {
homepage = "https://pypi.org/project/truncnorm";
description = "Moments for doubly truncated multivariate normal distributions";
license = licenses.mit;
maintainers = with maintainers; [ jluttine ];
};
}

View File

@@ -15426,6 +15426,8 @@ self: super: with self; {
trueskill = callPackage ../development/python-modules/trueskill { };
truncnorm = callPackage ../development/python-modules/truncnorm { };
trustme = callPackage ../development/python-modules/trustme { };
truststore = callPackage ../development/python-modules/truststore { };