lol

python3Packages.dbus-python-client-gen: init at 0.8

Nick Cao 91dee8a4 de6160d4

+36
+34
pkgs/development/python-modules/dbus-python-client-gen/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , into-dbus-python 5 + , dbus-python 6 + , pytestCheckHook 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "dbus-python-client-gen"; 11 + version = "0.8"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "stratis-storage"; 15 + repo = pname; 16 + rev = "v${version}"; 17 + hash = "sha256-nSzxT65WHBVct5pGHmIAHJXftd0tKZeK/argN+V9xcs="; 18 + }; 19 + 20 + propagatedBuildInputs = [ 21 + into-dbus-python 22 + dbus-python 23 + ]; 24 + checkInputs = [ 25 + pytestCheckHook 26 + ]; 27 + 28 + meta = with lib; { 29 + description = "A Python library for generating dbus-python client code"; 30 + homepage = "https://github.com/stratis-storage/dbus-python-client-gen"; 31 + license = licenses.mpl20; 32 + maintainers = with maintainers; [ nickcao ]; 33 + }; 34 + }
+2
pkgs/top-level/python-packages.nix
··· 2299 2299 inherit (pkgs) dbus; 2300 2300 }; 2301 2301 2302 + dbus-python-client-gen = callPackage ../development/python-modules/dbus-python-client-gen { }; 2303 + 2302 2304 dbus-signature-pyparsing = callPackage ../development/python-modules/dbus-signature-pyparsing { }; 2303 2305 2304 2306 dbutils = callPackage ../development/python-modules/dbutils { };