forked from mirrors/nixpkgs
python3Packages.python-igraph: rename to igraph
https://igraph.org/2021/10/29/igraph-0.9.8-python.html
This commit is contained in:
parent
f1d204a880
commit
63acfd5685
|
@ -1,5 +1,5 @@
|
|||
{ buildPythonPackage, isPy3k, fetchFromGitHub, lib,
|
||||
z3, ply, python-igraph, oset, ordered-set, dictionaries, setuptools }:
|
||||
z3, ply, igraph, oset, ordered-set, dictionaries, setuptools }:
|
||||
|
||||
buildPythonPackage {
|
||||
pname = "cozy";
|
||||
|
@ -7,7 +7,7 @@ buildPythonPackage {
|
|||
disabled = !isPy3k;
|
||||
|
||||
propagatedBuildInputs = [
|
||||
setuptools z3 ply python-igraph oset ordered-set dictionaries
|
||||
setuptools z3 ply igraph oset ordered-set dictionaries
|
||||
];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, buildPythonPackage, fetchFromGitHub, antlr4-python3-runtime, pygments, python-igraph }:
|
||||
{ lib, buildPythonPackage, fetchFromGitHub, antlr4-python3-runtime, pygments, igraph }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "explorerscript";
|
||||
|
@ -11,7 +11,7 @@ buildPythonPackage rec {
|
|||
sha256 = "1vzyliiyrxx8l9sfbqcyr4xn5swd7znkxy69kn0vb5rban8hm9c1";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ antlr4-python3-runtime python-igraph ];
|
||||
propagatedBuildInputs = [ antlr4-python3-runtime igraph ];
|
||||
checkInputs = [ pygments ];
|
||||
|
||||
meta = with lib; {
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
, pytestCheckHook
|
||||
, networkx
|
||||
, matplotlib
|
||||
, python-igraph
|
||||
, igraph
|
||||
, plotly
|
||||
, ipywidgets
|
||||
}:
|
||||
|
@ -35,7 +35,7 @@ buildPythonPackage rec {
|
|||
pytestCheckHook
|
||||
networkx
|
||||
matplotlib
|
||||
python-igraph
|
||||
igraph
|
||||
plotly
|
||||
ipywidgets
|
||||
];
|
||||
|
|
|
@ -75,6 +75,7 @@ mapAliases ({
|
|||
pytestpep8 = throw "pytestpep8 was removed because it is abandoned and no longer compatible with pytest v6.0"; # added 2020-12-10
|
||||
pytestquickcheck = pytest-quickcheck; # added 2021-07-20
|
||||
pytestrunner = pytest-runner; # added 2021-01-04
|
||||
python-igraph = igraph; # added 2021-11-11
|
||||
python-lz4 = lz4; # added 2018-06-01
|
||||
python_mimeparse = python-mimeparse; # added 2021-10-31
|
||||
python-subunit = subunit; # added 2021-09-10
|
||||
|
|
|
@ -3692,6 +3692,10 @@ in {
|
|||
|
||||
ignite = callPackage ../development/python-modules/ignite { };
|
||||
|
||||
igraph = callPackage ../development/python-modules/igraph {
|
||||
inherit (pkgs) igraph;
|
||||
};
|
||||
|
||||
ihatemoney = callPackage ../development/python-modules/ihatemoney { };
|
||||
|
||||
ijson = callPackage ../development/python-modules/ijson { };
|
||||
|
@ -7495,10 +7499,6 @@ in {
|
|||
|
||||
python-http-client = callPackage ../development/python-modules/python-http-client { };
|
||||
|
||||
python-igraph = callPackage ../development/python-modules/python-igraph {
|
||||
inherit (pkgs) igraph;
|
||||
};
|
||||
|
||||
pythonix = callPackage ../development/python-modules/pythonix {
|
||||
nix = pkgs.nix_2_3;
|
||||
meson = pkgs.meson.override { python3 = self.python; };
|
||||
|
|
Loading…
Reference in a new issue