about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/asdf/default.nix
blob: 8efc251140a839f23afd5908ae7e3d28cef4010d (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
38
39
40
41
42
43
44
45
46
47
{ lib
, buildPythonPackage
, fetchPypi
, pytest-astropy
, semantic-version
, pyyaml
, jsonschema
, six
, numpy
, isPy27
, astropy
}:

buildPythonPackage rec {
  pname = "asdf";
  version = "2.3.3";
  disabled = isPy27;

  src = fetchPypi {
    inherit pname version;
    sha256 = "d02e936a83abd206e7bc65050d94e8848da648344dbec9e49dddc2bdc3bd6870";
  };

  checkInputs = [
    pytest-astropy
    astropy
  ];

  propagatedBuildInputs = [
    semantic-version
    pyyaml
    jsonschema
    six
    numpy
  ];

  checkPhase = ''
    pytest
  '';

  meta = with lib; {
    description = "Python tools to handle ASDF files";
    homepage = https://github.com/spacetelescope/asdf;
    license = licenses.bsd3;
    maintainers = [ maintainers.costrouc ];
  };
}