From 12a46601e9ca199d41b039cf585a4b779820baff Mon Sep 17 00:00:00 2001 From: Sébastien Maret Date: Mon, 28 May 2018 12:50:10 +0200 Subject: spectral-cube: init at 0.4.3 --- .../python-modules/spectral-cube/default.nix | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 pkgs/development/python-modules/spectral-cube/default.nix (limited to 'pkgs/development') diff --git a/pkgs/development/python-modules/spectral-cube/default.nix b/pkgs/development/python-modules/spectral-cube/default.nix new file mode 100644 index 000000000000..3f54fefadf24 --- /dev/null +++ b/pkgs/development/python-modules/spectral-cube/default.nix @@ -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 ]; + }; +} + + -- cgit 1.4.1