at 25.11-pre 598 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "pyfdt"; 9 version = "0.3"; 10 11 src = fetchPypi { 12 inherit version; 13 pname = "pyfdt"; 14 hash = "sha256:1w7lp421pssfgv901103521qigwb12i6sk68lqjllfgz0lh1qq31"; 15 }; 16 17 doCheck = false; # tests do not compile, see https://github.com/superna9999/pyfdt/issues/21 18 19 pythonImportsCheck = [ "pyfdt" ]; 20 21 meta = { 22 homepage = "https://github.com/superna9999/pyfdt"; 23 description = "Flattened device tree parser"; 24 license = lib.licenses.asl20; 25 maintainers = with lib.maintainers; [ ralismark ]; 26 }; 27}