summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-igraph
diff options
context:
space:
mode:
authorCorbin <cds@corbinsimpson.com>2018-06-28 21:41:45 -0700
committerCorbin <cds@corbinsimpson.com>2018-07-28 07:26:07 -0700
commit14c88b67c14fb7e4ab56adee9854ca7a23858113 (patch)
tree7878bc797efa93eba01b5a058b1acfdfafdf4eef /pkgs/development/python-modules/python-igraph
parentf20100a3e44babda44c55d7873e5200c5114a2c3 (diff)
pythonPackages.python-igraph: init at 0.7.1.post6
Diffstat (limited to 'pkgs/development/python-modules/python-igraph')
-rw-r--r--pkgs/development/python-modules/python-igraph/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/python-igraph/default.nix b/pkgs/development/python-modules/python-igraph/default.nix
new file mode 100644
index 000000000000..a24f3a9fedc8
--- /dev/null
+++ b/pkgs/development/python-modules/python-igraph/default.nix
@@ -0,0 +1,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 ];
+ };
+}
+
+