nixpkgs/pkgs/development/python-modules/pygtrie/default.nix

16 lines
456 B
Nix
Raw Normal View History

2020-10-21 14:50:12 +01:00
{ lib, fetchPypi, buildPythonPackage, ... }:
buildPythonPackage rec {
pname = "pygtrie";
2020-11-29 14:04:37 +00:00
version = "2.4.1";
2020-10-21 14:50:12 +01:00
src = fetchPypi {
inherit pname version;
2020-11-29 14:04:37 +00:00
sha256 = "4367b87d92eaf475107421dce0295a9d4d72156702908c96c430a426b654aee7";
2020-10-21 14:50:12 +01:00
};
meta = {
homepage = "https://github.com/mina86/pygtrie";
description = "Trie data structure implementation";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ kmein ];
};
}