nixpkgs/pkgs/development/python-modules/pytest-astropy/default.nix

50 lines
973 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, hypothesis
, pytest
, pytest-astropy-header
, pytest-doctestplus
, pytest-filter-subpackage
, pytest-remotedata
, pytest-openfiles
, pytest-arraydiff
, setuptools-scm
}:
buildPythonPackage rec {
pname = "pytest-astropy";
version = "0.8.0";
src = fetchPypi {
inherit pname version;
sha256 = "619800eb2cbf64548fbea25268efe7c6f6ae206cb4825f34abd36f27bcf946a2";
};
nativeBuildInputs = [
setuptools-scm
];
buildInputs = [ pytest ];
propagatedBuildInputs = [
hypothesis
pytest-astropy-header
pytest-doctestplus
pytest-filter-subpackage
pytest-remotedata
pytest-openfiles
pytest-arraydiff
];
# pytest-astropy is a meta package and has no tests
doCheck = false;
meta = with lib; {
description = "Meta-package containing dependencies for testing";
homepage = "https://astropy.org";
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}