about summary refs log tree commit diff
path: root/pkgs/development/python-modules/dbus-signature-pyparsing/default.nix
blob: 659fcc3ed59d845a994efa0c8062411370e79d7c (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
{ lib
, buildPythonPackage
, fetchFromGitHub
, pyparsing
, pytestCheckHook
, hypothesis
, hs-dbus-signature
}:

buildPythonPackage rec {
  pname = "dbus-signature-pyparsing";
  version = "0.04";

  src = fetchFromGitHub {
    owner = "stratis-storage";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-IXyepfq7pLTRkTolKWsKGrYDoxukVC9JTrxS9xV7s2I=";
  };

  propagatedBuildInputs = [ pyparsing ];
  checkInputs = [
    pytestCheckHook
    hypothesis
    hs-dbus-signature
  ];

  meta = with lib; {
    description = "A Parser for a D-Bus Signature";
    homepage = "https://github.com/stratis-storage/dbus-signature-pyparsing";
    license = licenses.asl20;
    maintainers = with maintainers; [ nickcao ];
  };
}