spectral-cube: init at 0.4.3
This commit is contained in:
parent
3b9a34ff30
commit
12a46601e9
30
pkgs/development/python-modules/spectral-cube/default.nix
Normal file
30
pkgs/development/python-modules/spectral-cube/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ lib
|
||||||
|
, fetchPypi
|
||||||
|
, buildPythonPackage
|
||||||
|
, astropy
|
||||||
|
, radio_beam
|
||||||
|
, pytest }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "spectral-cube";
|
||||||
|
version = "0.4.3";
|
||||||
|
|
||||||
|
doCheck = false; # the tests requires several pytest plugins that are not in nixpkgs
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "057g3mzlg5cy4wg2hh3p6gssn93rs6i7pswzhldvcq4k8m8hsl3b";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ astropy radio_beam pytest ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Library for reading and analyzing astrophysical spectral data cubes";
|
||||||
|
homepage = http://radio-astro-tools.github.io;
|
||||||
|
license = lib.licenses.bsd3;
|
||||||
|
platforms = lib.platforms.all;
|
||||||
|
maintainers = with lib.maintainers; [ smaret ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -18171,6 +18171,8 @@ EOF
|
|||||||
|
|
||||||
radio_beam = callPackage ../development/python-modules/radio_beam { };
|
radio_beam = callPackage ../development/python-modules/radio_beam { };
|
||||||
|
|
||||||
|
spectral-cube = callPackage ../development/python-modules/spectral-cube { };
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
in fix' (extends overrides packages)
|
in fix' (extends overrides packages)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user