lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python312Packages.lazr-config: refactor

+5 -5
+4 -4
pkgs/development/python-modules/lazr/config.nix pkgs/development/python-modules/lazr-config/default.nix
··· 19 19 hash = "sha256-eYJY4JRoqTMG4j1jyiYrI8xEKdJ+wQYVVU/6OqVIodk="; 20 20 }; 21 21 22 - nativeBuildInputs = [ setuptools ]; 22 + build-system = [ setuptools ]; 23 23 24 - propagatedBuildInputs = [ 24 + dependencies = [ 25 25 lazr-delegates 26 26 zope-interface 27 27 ]; ··· 38 38 39 39 pythonNamespaces = [ "lazr" ]; 40 40 41 - meta = with lib; { 41 + meta = { 42 42 description = "Create configuration schemas, and process and validate configurations"; 43 43 homepage = "https://launchpad.net/lazr.config"; 44 44 changelog = "https://git.launchpad.net/lazr.config/tree/NEWS.rst?h=${version}"; 45 - license = licenses.lgpl3Only; 45 + license = lib.licenses.lgpl3Only; 46 46 }; 47 47 }
+1 -1
pkgs/top-level/python-packages.nix
··· 7149 7149 7150 7150 layoutparser = callPackage ../development/python-modules/layoutparser { }; 7151 7151 7152 - lazr-config = callPackage ../development/python-modules/lazr/config.nix { }; 7152 + lazr-config = callPackage ../development/python-modules/lazr-config { }; 7153 7153 7154 7154 lazr-delegates = callPackage ../development/python-modules/lazr-delegates { }; 7155 7155