Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / stanio / default.nix
blobef4928e6e4f8bf2369e74bd0e468b34926113528
1 { lib
2 , buildPythonPackage
3 , pythonOlder
4 , fetchPypi
5 , setuptools
6 , numpy
7 }:
9 buildPythonPackage rec {
10   pname = "stanio";
11   version = "0.5.0";
12   pyproject = true;
14   disabled = pythonOlder "3.8";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-3uQpMU2WXzkBga+o/3/4FERG7rWMwlR8zBCLpz5nROI=";
19   };
21   nativeBuildInputs = [
22     setuptools
23   ];
25   propagatedBuildInputs = [
26     numpy
27   ];
29   pythonImportsCheck = [ "stanio" ];
31   meta = with lib; {
32     description = "Preparing inputs to and reading outputs from Stan";
33     homepage = "https://github.com/WardBrian/stanio";
34     license = licenses.bsd3;
35     maintainers = with maintainers; [ wegank ];
36   };