summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/dbus-deviation/default.nix
blob: c4c9cbdba187d32e839c1a52d563fbb4e349a592 (plain)
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
{
  lib,
  buildPythonPackage,
  fetchPypi,
  lxml,
  setuptools,
}:

buildPythonPackage rec {
  pname = "dbus-deviation";
  version = "0.6.1";
  pyproject = true;

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-4GuI7+IjiF0nJd9Rz3ybe0Y9HG8E6knUaQh0MY0Ot6M=";
  };

  postPatch = ''
    substituteInPlace setup.py \
      --replace-fail "'setuptools_git >= 0.3'," "" \
      --replace-fail "'sphinx'," ""
  '';

  build-system = [ setuptools ];
  dependencies = [ lxml ];

  pythonImportsCheck = [ "dbusdeviation" ];

  meta = {
    homepage = "https://tecnocode.co.uk/dbus-deviation/";
    description = "Project for parsing D-Bus introspection XML and processing it in various ways";
    license = lib.licenses.lgpl21Plus;
    maintainers = [ ];
  };
}