depot/third_party/nixpkgs/pkgs/development/python-modules/pytest-doctestplus/default.nix
Default email 9405df4a82 Project import generated by Copybara.
GitOrigin-RevId: 8e4fe32876ca15e3d5eb3ecd3ca0b224417f5f17
2021-04-26 15:14:03 -04:00

42 lines
771 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, isPy27
, six
, pytest
, numpy
}:
buildPythonPackage rec {
pname = "pytest-doctestplus";
version = "0.9.0";
disabled = isPy27; # abandoned upstream
src = fetchPypi {
inherit pname version;
sha256 = "6fe747418461d7b202824a3486ba8f4fa17a9bd0b1eddc743ba1d6d87f03391a";
};
buildInputs = [ pytest ];
propagatedBuildInputs = [
six
numpy
];
checkInputs = [
pytest
];
# check_distribution incorrectly pulls pytest version
checkPhase = ''
pytest -k 'not check_distribution'
'';
meta = with lib; {
description = "Pytest plugin with advanced doctest features";
homepage = "https://astropy.org";
license = licenses.bsd3;
maintainers = [ maintainers.costrouc ];
};
}