1{ buildPythonPackage, fetchPypi, lib,
2 pkgconfig, igraph }:
3
4buildPythonPackage rec {
5 pname = "python-igraph";
6 version = "0.7.1.post6";
7
8 buildInputs = [ pkgconfig igraph ];
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "0xp61zz710qlzhmzbfr65d5flvsi8zf2xy78s6rsszh719wl5sm5";
13 };
14
15 meta = {
16 description = "High performance graph data structures and algorithms";
17 license = lib.licenses.gpl2;
18 maintainers = [ lib.maintainers.MostAwesomeDude ];
19 };
20}
21
22