lol
at 23.11-beta 36 lines 790 B view raw
1{ lib 2, buildPythonPackage 3, fetchFromGitHub 4, pyparsing 5, pytestCheckHook 6, hypothesis 7, hs-dbus-signature 8}: 9 10buildPythonPackage rec { 11 pname = "dbus-signature-pyparsing"; 12 version = "0.4.1"; 13 14 src = fetchFromGitHub { 15 owner = "stratis-storage"; 16 repo = pname; 17 rev = "v${version}"; 18 hash = "sha256-+jY8kg3jBDpZr5doih3DiyUEcSskq7TgubmW3qdBoZM="; 19 }; 20 21 propagatedBuildInputs = [ pyparsing ]; 22 nativeCheckInputs = [ 23 pytestCheckHook 24 hypothesis 25 hs-dbus-signature 26 ]; 27 28 pythonImportsCheck = [ "dbus_signature_pyparsing" ]; 29 30 meta = with lib; { 31 description = "A Parser for a D-Bus Signature"; 32 homepage = "https://github.com/stratis-storage/dbus-signature-pyparsing"; 33 license = licenses.asl20; 34 maintainers = with maintainers; [ nickcao ]; 35 }; 36}