biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / into-dbus-python / default.nix
blob004138c13bdb5c90b2d855019558f0a4f9db6261
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   dbus-signature-pyparsing,
6   dbus-python,
7   pytestCheckHook,
8   hypothesis,
9   hs-dbus-signature,
12 buildPythonPackage rec {
13   pname = "into-dbus-python";
14   version = "0.8.2";
15   format = "setuptools";
17   src = fetchFromGitHub {
18     owner = "stratis-storage";
19     repo = pname;
20     rev = "v${version}";
21     hash = "sha256-Ld/DyhVaDiWUXgqmvSmEHqFW2dcoRNM0O4X5DXE3UtM=";
22   };
24   propagatedBuildInputs = [
25     dbus-signature-pyparsing
26     dbus-python
27   ];
29   nativeCheckInputs = [
30     pytestCheckHook
31     hypothesis
32     hs-dbus-signature
33   ];
35   pythonImportsCheck = [ "into_dbus_python" ];
37   meta = with lib; {
38     description = "Transformer to dbus-python types";
39     homepage = "https://github.com/stratis-storage/into-dbus-python";
40     license = licenses.asl20;
41     maintainers = with maintainers; [ nickcao ];
42   };