python311Packages.stanio: init at 0.3.0

This commit is contained in:
Weijia Wang 2023-10-07 20:25:34 +02:00
parent 61e05b5650
commit 341b8cadca
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, setuptools
, numpy
}:
buildPythonPackage rec {
pname = "stanio";
version = "0.3.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-DFBK5nG41Sah2nEYWsAqJ3VQj/5tPbkfJC6shbz2BG8=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
numpy
];
pythonImportsCheck = [ "stanio" ];
meta = with lib; {
description = "Preparing inputs to and reading outputs from Stan";
homepage = "https://github.com/WardBrian/stanio";
license = licenses.bsd3;
maintainers = with maintainers; [ wegank ];
};
}

View File

@ -12515,6 +12515,8 @@ self: super: with self; {
stack-data = callPackage ../development/python-modules/stack-data { };
stanio = callPackage ../development/python-modules/stanio { };
stanza = callPackage ../development/python-modules/stanza { };
starlette = callPackage ../development/python-modules/starlette {