xeus-cling: fix improper linking with LLVM (#351130)
[NixPkgs.git] / pkgs / development / python-modules / patsy / default.nix
blobd5acbee88521b4160737c5914a90b7c6a669cb93
2   lib,
3   fetchPypi,
4   buildPythonPackage,
5   setuptools,
6   six,
7   numpy,
8   scipy, # optional, allows spline-related features (see patsy's docs)
9   pytestCheckHook,
12 buildPythonPackage rec {
13   pname = "patsy";
14   version = "0.5.6";
15   pyproject = true;
17   src = fetchPypi {
18     inherit pname version;
19     hash = "sha256-lcbUenIiU1+Ev/f2PXMD8uKXdHpZjbic9cZ/DAx9LNs=";
20   };
22   nativeBuildInputs = [ setuptools ];
24   propagatedBuildInputs = [
25     six
26     numpy
27     scipy
28   ];
30   nativeCheckInputs = [ pytestCheckHook ];
32   pythonImportsCheck = [ "patsy" ];
34   meta = {
35     description = "Python package for describing statistical models";
36     homepage = "https://github.com/pydata/patsy";
37     license = lib.licenses.bsd2;
38     maintainers = with lib.maintainers; [ ilya-kolpakov ];
39   };