lol

python312Packages.ua-parser-builtins: init at 1.0.0

+30
+28
pkgs/development/python-modules/ua-parser-builtins/default.nix
··· 1 + { 2 + buildPythonPackage, 3 + hatchling, 4 + pyyaml, 5 + ua-parser, 6 + versioningit, 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "ua-parser-builtins"; 11 + inherit (ua-parser) version src; 12 + pyproject = true; 13 + 14 + sourceRoot = "${src.name}/ua-parser-builtins"; 15 + 16 + postPatch = '' 17 + # break dependency cycle and don't use git to determine version 18 + substituteInPlace pyproject.toml \ 19 + --replace-fail 'dependencies = ["ua-parser"]' "" \ 20 + --replace-fail 'dynamic = ["version"]' 'version = "${version}"' 21 + ''; 22 + 23 + build-system = [ 24 + hatchling 25 + pyyaml 26 + versioningit 27 + ]; 28 + }
+2
pkgs/top-level/python-packages.nix
··· 17239 17239 17240 17240 ua-parser = callPackage ../development/python-modules/ua-parser { }; 17241 17241 17242 + ua-parser-builtins = callPackage ../development/python-modules/ua-parser-builtins { }; 17243 + 17242 17244 uarray = callPackage ../development/python-modules/uarray { }; 17243 17245 17244 17246 uart-devices = callPackage ../development/python-modules/uart-devices { };