summary refs log tree commit diff
path: root/pkgs/development/python-modules/python-igraph/default.nix
blob: a24f3a9fedc8ea9b1187e3c12c96fcf1ca5df0fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ buildPythonPackage, fetchPypi, lib,
  pkgconfig, igraph }:

buildPythonPackage rec {
  pname = "python-igraph";
  version = "0.7.1.post6";

  buildInputs = [ pkgconfig igraph ];

  src = fetchPypi {
    inherit pname version;
    sha256 = "0xp61zz710qlzhmzbfr65d5flvsi8zf2xy78s6rsszh719wl5sm5";
  };

  meta = {
    description = "High performance graph data structures and algorithms";
    license = lib.licenses.gpl2;
    maintainers = [ lib.maintainers.MostAwesomeDude ];
  };
}