about summary refs log tree commit diff
path: root/pkgs/development/python-modules/wavedrom/default.nix
blob: 9068293631088dd5e5a1dcce64c32ffaba9d5eb6 (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
50
51
52
53
{ lib
, buildPythonPackage
, fetchPypi
, attrdict
, cairosvg
, pillow
, pytestCheckHook
, setuptools-scm
, six
, svgwrite
, xmldiff
}:

buildPythonPackage rec {
  pname = "wavedrom";
  version = "2.0.3.post2";
  src = fetchPypi {
    inherit pname version;
    sha256 = "239b3435ff116b09007d5517eed755fc8591891b7271a1cd40db9e400c02448d";
  };

  SETUPTOOLS_SCM_PRETEND_VERSION = version;

  nativeBuildInputs = [
    setuptools-scm
  ];

  propagatedBuildInputs = [
    attrdict
    svgwrite
    six
  ];

  checkInputs = [
    pytestCheckHook
    xmldiff
    pillow
    cairosvg
  ];

  disabledTests = [
    "test_upstream"  # requires to clone a full git repository
  ];

  pythonImportsCheck = [ "wavedrom" ];

  meta = {
    description = "WaveDrom compatible Python command line";
    homepage = "https://github.com/wallento/wavedrompy";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ airwoodix ];
  };
}