summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-astropy/default.nix
blob: 272b1fa56b90a6d3b0e5a238b9a5a7c53220b82d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ lib
, buildPythonPackage
, fetchPypi
, pytest
, pytest-doctestplus
, pytest-remotedata
, pytest-openfiles
, pytest-arraydiff
}:

buildPythonPackage rec {
  pname = "pytest-astropy";
  version = "0.5.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "6f28fb81dcdfa745f423b8f6d0303d97357d775b4128bcc2b3668f1602fd5a0b";
  };

  propagatedBuildInputs = [
    pytest
    pytest-doctestplus
    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 ];
  };
}