about summary refs log tree commit diff
path: root/pkgs/development/tools/dt-schema
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-03-04 16:03:47 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2023-03-04 16:03:47 +0100
commit3239d056982878a82e503a9b48eb33b93056ae1c (patch)
tree1550cb5f92b397de9fd28f74874bc8d3ba3a7ae1 /pkgs/development/tools/dt-schema
parent710635f625fec5967ec51e865e0e0c3173df324c (diff)
downloadnixlib-3239d056982878a82e503a9b48eb33b93056ae1c.tar
nixlib-3239d056982878a82e503a9b48eb33b93056ae1c.tar.gz
nixlib-3239d056982878a82e503a9b48eb33b93056ae1c.tar.bz2
nixlib-3239d056982878a82e503a9b48eb33b93056ae1c.tar.lz
nixlib-3239d056982878a82e503a9b48eb33b93056ae1c.tar.xz
nixlib-3239d056982878a82e503a9b48eb33b93056ae1c.tar.zst
nixlib-3239d056982878a82e503a9b48eb33b93056ae1c.zip
dt-schema: move to python-modules
Diffstat (limited to 'pkgs/development/tools/dt-schema')
-rw-r--r--pkgs/development/tools/dt-schema/default.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/development/tools/dt-schema/default.nix b/pkgs/development/tools/dt-schema/default.nix
deleted file mode 100644
index 20e1ed136e2b..000000000000
--- a/pkgs/development/tools/dt-schema/default.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, git
-, ruamel-yaml
-, jsonschema
-, rfc3987
-, setuptools
-, setuptools-scm
-}:
-
-buildPythonPackage rec {
-  pname = "dtschema";
-  version = "2022.1";
-
-  src = fetchPypi {
-    inherit pname version;
-    sha256 = "sha256-G5KzuaMbbkuLK+cNvzBld1UwvExS6ZGVW2e+GXQRFMU=";
-  };
-
-  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 ];
-  };
-}
-