python311Packages.stanio: init at 0.3.0
This commit is contained in:
parent
61e05b5650
commit
341b8cadca
37
pkgs/development/python-modules/stanio/default.nix
Normal file
37
pkgs/development/python-modules/stanio/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user