Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / stanio / default.nix
blob83fcc7903107178f9b376847406cd3a850b2f934
1 { lib
2 , buildPythonPackage
3 , pythonOlder
4 , fetchPypi
5 , setuptools
6 , numpy
7 }:
9 buildPythonPackage rec {
10   pname = "stanio";
11   version = "0.3.0";
12   pyproject = true;
14   disabled = pythonOlder "3.8";
16   src = fetchPypi {
17     inherit pname version;
18     hash = "sha256-DFBK5nG41Sah2nEYWsAqJ3VQj/5tPbkfJC6shbz2BG8=";
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   };