Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
883 B
Nix
44 lines
883 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
dbus-signature-pyparsing,
|
|
dbus-python,
|
|
pytestCheckHook,
|
|
hypothesis,
|
|
hs-dbus-signature,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "into-dbus-python";
|
|
version = "0.8.2";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "stratis-storage";
|
|
repo = "into-dbus-python";
|
|
rev = "v${version}";
|
|
hash = "sha256-Ld/DyhVaDiWUXgqmvSmEHqFW2dcoRNM0O4X5DXE3UtM=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
dbus-signature-pyparsing
|
|
dbus-python
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
hypothesis
|
|
hs-dbus-signature
|
|
];
|
|
|
|
pythonImportsCheck = [ "into_dbus_python" ];
|
|
|
|
meta = with lib; {
|
|
description = "Transformer to dbus-python types";
|
|
homepage = "https://github.com/stratis-storage/into-dbus-python";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ nickcao ];
|
|
};
|
|
}
|