Merge pull request #224856 from septem9er/init/altgraph

authored by Janik and committed by GitHub 75ae6a03 a5065ffc

+44
+10
maintainers/maintainer-list.nix
··· 14875 14875 githubId = 4805746; 14876 14876 name = "Sebastian Jordan"; 14877 14877 }; 14878 + septem9er = { 14879 + name = "Septem9er"; 14880 + email = "develop@septem9er.de"; 14881 + matrix = "@septem9er:fairydust.space"; 14882 + github = "septem9er"; 14883 + githubId = 33379902; 14884 + keys = [{ 14885 + fingerprint = "C408 07F9 8677 3D98 EFF3 0980 355A 9AFB FD8E AD33"; 14886 + }]; 14887 + }; 14878 14888 seqizz = { 14879 14889 email = "seqizz@gmail.com"; 14880 14890 github = "seqizz";
+32
pkgs/development/python-modules/altgraph/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + }: 5 + 6 + buildPythonPackage rec { 7 + pname = "altgraph"; 8 + version = "0.17.3"; 9 + 10 + format = "setuptools"; 11 + 12 + src = fetchPypi { 13 + inherit pname version; 14 + sha256 = "ad33358114df7c9416cdb8fa1eaa5852166c505118717021c6a8c7c7abbd03dd"; 15 + }; 16 + 17 + pythonImportsCheck = [ "altgraph" ]; 18 + 19 + meta = with lib; { 20 + changelog = "https://github.com/ronaldoussoren/altgraph/tags${version}"; 21 + description = "A fork of graphlib: a graph (network) package for constructing graphs"; 22 + longDescription = '' 23 + altgraph is a fork of graphlib: a graph (network) package for constructing graphs, 24 + BFS and DFS traversals, topological sort, shortest paths, etc. with graphviz output. 25 + altgraph includes some additional usage of Python 2.6+ features and enhancements related to modulegraph and macholib. 26 + ''; 27 + homepage = "https://altgraph.readthedocs.io/"; 28 + downloadPage = "https://pypi.org/project/altgraph/"; 29 + license = licenses.mit; 30 + maintainers = with maintainers; [ septem9er ]; 31 + }; 32 + }
+2
pkgs/top-level/python-packages.nix
··· 442 442 443 443 altair = callPackage ../development/python-modules/altair { }; 444 444 445 + altgraph = callPackage ../development/python-modules/altgraph { }; 446 + 445 447 amarna = callPackage ../development/python-modules/amarna { }; 446 448 447 449 amazon-ion = callPackage ../development/python-modules/amazon-ion { };