2022-09-22 12:36:57 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, pytestCheckHook
|
|
|
|
, hypothesis
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "hs-dbus-signature";
|
|
|
|
version = "0.7";
|
2024-01-02 11:29:13 +00:00
|
|
|
format = "setuptools";
|
2022-09-22 12:36:57 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
hash = "sha256-NNnTcSX+K8zU+sj1QBd13h7aEXN9VqltJMNWCuhgZ6I=";
|
|
|
|
};
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2022-09-22 12:36:57 +00:00
|
|
|
pytestCheckHook
|
|
|
|
hypothesis
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "hs_dbus_signature" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A Hypothesis Strategy for Generating Arbitrary DBus Signatures";
|
|
|
|
homepage = "https://github.com/stratis-storage/hs-dbus-signature";
|
|
|
|
license = licenses.mpl20;
|
|
|
|
maintainers = with maintainers; [ nickcao ];
|
|
|
|
};
|
|
|
|
}
|