about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pyavm/default.nix
blob: 45cf827a82a8a5598ae937c4484328d77bf4e0d9 (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
48
49
{ lib
, buildPythonPackage
, fetchPypi

# build-system
, setuptools
, setuptools-scm

# tests
, astropy
, numpy
, pillow
, pytestCheckHook
}:

buildPythonPackage rec {
  pname = "pyavm";
  version = "0.9.6";
  pyproject = true;

  src = fetchPypi {
    pname = "PyAVM";
    inherit version;
    hash = "sha256-s7eLPoAHDbY9tPt3RA5zJg+NuTtVV/SqpUUR3NrG8m0=";
  };

  nativeBuildInputs = [
    setuptools
    setuptools-scm
  ];

  nativeCheckInputs = [
    astropy
    numpy
    pillow
    pytestCheckHook
  ];

  pythonImportsCheck = [
    "pyavm"
  ];

  meta = with lib; {
    description = "Simple pure-python AVM meta-data handling";
    homepage = "https://astrofrog.github.io/pyavm/";
    license = licenses.mit;
    maintainers = with maintainers; [ smaret ];
  };
}