1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 pytestCheckHook, 6 hypothesis, 7}: 8 9buildPythonPackage rec { 10 pname = "hs-dbus-signature"; 11 version = "0.7"; 12 format = "setuptools"; 13 14 src = fetchPypi { 15 inherit pname version; 16 hash = "sha256-NNnTcSX+K8zU+sj1QBd13h7aEXN9VqltJMNWCuhgZ6I="; 17 }; 18 19 nativeCheckInputs = [ 20 pytestCheckHook 21 hypothesis 22 ]; 23 24 pythonImportsCheck = [ "hs_dbus_signature" ]; 25 26 meta = with lib; { 27 description = "Hypothesis Strategy for Generating Arbitrary DBus Signatures"; 28 homepage = "https://github.com/stratis-storage/hs-dbus-signature"; 29 license = licenses.mpl20; 30 maintainers = with maintainers; [ nickcao ]; 31 }; 32}