pythonPackages.pyregion: init at 2.0

This commit is contained in:
Sébastien Maret 2019-02-25 15:36:56 +01:00
parent 50124a62c8
commit 646eb81a37
No known key found for this signature in database
GPG key ID: 86E30E5A0F5FC59C
2 changed files with 36 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{ lib
, buildPythonPackage
, fetchPypi
, pyparsing
, numpy
, cython
, astropy
}:
buildPythonPackage rec {
pname = "pyregion";
version = "2.0";
doCheck = false; # tests require pytest-astropy
src = fetchPypi {
inherit pname version;
sha256 = "a8ac5f764b53ec332f6bc43f6f2193ca13e8b7d5a3fb2e20ced6b2ea42a9d094";
};
propagatedBuildInputs = [
pyparsing
numpy
cython
astropy
];
meta = with lib; {
description = "Python parser for ds9 region files";
homepage = https://github.com/astropy/pyregion;
license = licenses.mit;
maintainers = [ maintainers.smaret ];
};
}

View file

@ -4965,6 +4965,8 @@ in {
potr = callPackage ../development/python-modules/potr {};
pyregion = callPackage ../development/python-modules/pyregion {};
python-u2flib-host = callPackage ../development/python-modules/python-u2flib-host { };
pluggy = callPackage ../development/python-modules/pluggy {};