pythonPackages.pyezminc: remove
- package supports Python 2 only - develop-python3 branch exists but datatype tests fail - not updated since 2018
This commit is contained in:
parent
f25df34398
commit
54c409eb01
@ -1,33 +0,0 @@
|
|||||||
{ buildPythonPackage, isPy3k, fetchFromGitHub, stdenv,
|
|
||||||
netcdf, hdf5, libminc, ezminc,
|
|
||||||
cython, numpy, scipy
|
|
||||||
}:
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
|
||||||
pname = "pyezminc";
|
|
||||||
version = "1.2.01";
|
|
||||||
|
|
||||||
disabled = isPy3k;
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "BIC-MNI";
|
|
||||||
repo = "pyezminc";
|
|
||||||
rev = "release-${version}";
|
|
||||||
sha256 = "13smvramacisbwj8qsl160dnvv6ynngn1jmqwhvy146nmadphyv1";
|
|
||||||
};
|
|
||||||
|
|
||||||
nativeBuildInputs = [ cython ];
|
|
||||||
buildInputs = [ netcdf hdf5 libminc ezminc ];
|
|
||||||
propagatedBuildInputs = [ numpy scipy ];
|
|
||||||
|
|
||||||
NIX_CFLAGS_COMPILE = "-fpermissive";
|
|
||||||
|
|
||||||
doCheck = false; # e.g., expects test data in /opt
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = https://github.com/BIC-MNI/pyezminc;
|
|
||||||
description = "Python API for libminc using EZMINC";
|
|
||||||
license = stdenv.lib.licenses.gpl2;
|
|
||||||
maintainers = with stdenv.lib.maintainers; [ bcdarwin ];
|
|
||||||
};
|
|
||||||
}
|
|
@ -1897,8 +1897,6 @@ in {
|
|||||||
|
|
||||||
pyepsg = callPackage ../development/python-modules/pyepsg { };
|
pyepsg = callPackage ../development/python-modules/pyepsg { };
|
||||||
|
|
||||||
pyezminc = callPackage ../development/python-modules/pyezminc { };
|
|
||||||
|
|
||||||
billiard = callPackage ../development/python-modules/billiard { };
|
billiard = callPackage ../development/python-modules/billiard { };
|
||||||
|
|
||||||
binaryornot = callPackage ../development/python-modules/binaryornot { };
|
binaryornot = callPackage ../development/python-modules/binaryornot { };
|
||||||
|
Loading…
Reference in New Issue
Block a user