forked from mirrors/nixpkgs
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
41 lines
720 B
Nix
41 lines
720 B
Nix
{ lib
|
|
, fetchPypi
|
|
, buildPythonPackage
|
|
, six
|
|
, numpy
|
|
, scipy # optional, allows spline-related features (see patsy's docs)
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "patsy";
|
|
version = "0.5.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-vcGAAYdeMZvJHIEsHrahC+S7E8uB63Y/RmF53KO2cnc=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
six
|
|
numpy
|
|
scipy
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"patsy"
|
|
];
|
|
|
|
meta = {
|
|
description = "A Python package for describing statistical models";
|
|
homepage = "https://github.com/pydata/patsy";
|
|
license = lib.licenses.bsd2;
|
|
maintainers = with lib.maintainers; [ ilya-kolpakov ];
|
|
};
|
|
}
|
|
|