Unverified Commit 96ed544a authored by Temmie's avatar Temmie Committed by GitHub
Browse files

python312Packages.pyfdt: init at 0.3 (#322590)

parent 9f545f46
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
{
  lib,
  buildPythonPackage,
  fetchPypi,
}:

buildPythonPackage rec {
  pname = "pyfdt";
  version = "0.3";

  src = fetchPypi {
    inherit version;
    pname = "pyfdt";
    hash = "sha256:1w7lp421pssfgv901103521qigwb12i6sk68lqjllfgz0lh1qq31";
  };

  doCheck = false; # tests do not compile, see https://github.com/superna9999/pyfdt/issues/21

  pythonImportsCheck = [ "pyfdt" ];

  meta = {
    homepage = "https://github.com/superna9999/pyfdt";
    description = "Flattened device tree parser";
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ ralismark ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -12302,6 +12302,8 @@ self: super: with self; {
  pyfcm = callPackage ../development/python-modules/pyfcm { };
  pyfdt = callPackage ../development/python-modules/pyfdt { };
  pyfibaro = callPackage ../development/python-modules/pyfibaro { };
  pyfido = callPackage ../development/python-modules/pyfido { };