2020-05-01 10:08:15 +01:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, git
|
|
|
|
, ruamel_yaml
|
|
|
|
, jsonschema
|
|
|
|
, rfc3987
|
|
|
|
, setuptools
|
|
|
|
, setuptools_scm
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "dtschema";
|
2021-02-13 12:38:51 +00:00
|
|
|
version = "2021.2.1";
|
2020-05-01 10:08:15 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-02-13 12:38:51 +00:00
|
|
|
sha256 = "d9f88f069068dc5dc7e895785d7172d260cbbc34cab3b52704b20e89b80c6de8";
|
2020-05-01 10:08:15 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ setuptools_scm git ];
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
setuptools
|
|
|
|
ruamel_yaml
|
|
|
|
jsonschema
|
|
|
|
rfc3987
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Tooling for devicetree validation using YAML and jsonschema";
|
|
|
|
homepage = "https://github.com/devicetree-org/dt-schema/";
|
|
|
|
# all files have SPDX tags
|
|
|
|
license = with licenses; [ bsd2 gpl2 ];
|
|
|
|
maintainers = with maintainers; [ sorki ];
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|