nixpkgs/pkgs/development/python-modules/pygtrie/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

16 lines
441 B
Nix

{ lib, fetchPypi, buildPythonPackage, ... }:
buildPythonPackage rec {
pname = "pygtrie";
version = "2.5.0";
src = fetchPypi {
inherit pname version;
hash = "sha256-IDUUrYJutAPasdLi3dA04NFTS75NvgITuwWT9mvrpOI=";
};
meta = {
homepage = "https://github.com/mina86/pygtrie";
description = "Trie data structure implementation";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ kmein ];
};
}