pkgsrc/math/py-networkx/Makefile
adam 9fc7f1af0b py-networkx: updated to 2.2
2.2:
This release is the result of 8 months of work with over 149 commits by
58 contributors. Highlights include:
- Add support for Python 3.7. This is the last release to support Python 2.
- Uniform random number generator (RNG) handling which defaults to global
  RNGs but allows specification of a single RNG for all random numbers in NX.
- Improved GraphViews to ease subclassing and remove cyclic references
  which caused trouble with deepcopy and pickle.
- New Graph method `G.update(H)`
2018-11-30 10:37:07 +00:00

23 lines
659 B
Makefile

# $NetBSD: Makefile,v 1.27 2018/11/30 10:37:07 adam Exp $
DISTNAME= networkx-2.2
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= math python
MASTER_SITES= ${MASTER_SITE_PYPI:=n/networkx/}
EXTRACT_SUFX= .zip
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://networkx.github.io/
COMMENT= Python package for creating and manipulating graphs and networks
LICENSE= modified-bsd
DEPENDS+= ${PYPKGPREFIX}-decorator>=4.3.0:../../devel/py-decorator
TEST_DEPENDS+= ${PYPKGPREFIX}-nose>=1.3.7:../../devel/py-nose
USE_LANGUAGES= # none
post-extract:
find ${WRKSRC} -type f -exec chmod 644 {} +
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"