depot/third_party/nixpkgs/pkgs/development/python-modules/pytricia/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

23 lines
579 B
Nix

{ stdenv
, buildPythonPackage
, fetchFromGitHub
}:
buildPythonPackage rec {
pname = "pytricia";
version = "unstable-2019-01-16";
src = fetchFromGitHub {
owner = "jsommers";
repo = pname;
rev = "4ba88f68c3125f789ca8cd1cfae156e1464bde87";
sha256 = "0qp5774xkm700g35k5c76pck8pdzqlyzbaqgrz76a1yh67s2ri8h";
};
meta = with stdenv.lib; {
description = "A library for fast IP address lookup in Python";
homepage = "https://github.com/jsommers/pytricia";
license = with licenses; [ lgpl3Plus ];
maintainers = with maintainers; [ mkg ];
};
}