0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

python313Packages.glean-sdk: 63.0.0 -> 64.0.0

https://github.com/mozilla/glean/compare/v63.0.0...v64.0.0
This commit is contained in:
Martin Weinelt 2025-04-01 03:06:36 +02:00
parent 69708591f7
commit dd6a5d08e6
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -13,20 +13,20 @@
buildPythonPackage rec {
pname = "glean-sdk";
version = "63.0.0";
version = "64.0.0";
pyproject = true;
src = fetchFromGitHub {
owner = "mozilla";
repo = "glean";
rev = "v${version}";
hash = "sha256-egn6RYQHY173fvTCTYrTJltn923UowCjBZg1DI+iHSk=";
hash = "sha256-6UAZkVBxFJ1CWRn9enCLBBidIugAtxP7stbYlhh1ArA=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit src;
name = "${pname}-${version}";
hash = "sha256-eLjPoSn0WqYGrMPqzVh/pzZvh3Ul+aZSYvuJspVM1cU=";
hash = "sha256-Ppc+6ex3yLC4xuhbZGZDKLqxDjSdGpgrLDpbbbqMgPY=";
};
build-system = [