summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorSébastien Maret <sebastien.maret@univ-grenoble-alpes.fr>2018-05-28 12:38:44 +0200
committerSébastien Maret <sebastien.maret@univ-grenoble-alpes.fr>2018-05-28 13:30:42 +0200
commit3b9a34ff30767613a589e3afb128f94f106f2d59 (patch)
tree8548e902ca543d3a5d8d4452f18f66f8c442ea86 /pkgs/development/python-modules
parenta6519a26764e91b1a1ee21ee378808081501d214 (diff)
downloadnixlib-3b9a34ff30767613a589e3afb128f94f106f2d59.tar
nixlib-3b9a34ff30767613a589e3afb128f94f106f2d59.tar.gz
nixlib-3b9a34ff30767613a589e3afb128f94f106f2d59.tar.bz2
nixlib-3b9a34ff30767613a589e3afb128f94f106f2d59.tar.lz
nixlib-3b9a34ff30767613a589e3afb128f94f106f2d59.tar.xz
nixlib-3b9a34ff30767613a589e3afb128f94f106f2d59.tar.zst
nixlib-3b9a34ff30767613a589e3afb128f94f106f2d59.zip
radio_beam: init at 0.2
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/radio_beam/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/radio_beam/default.nix b/pkgs/development/python-modules/radio_beam/default.nix
new file mode 100644
index 000000000000..07a05902a369
--- /dev/null
+++ b/pkgs/development/python-modules/radio_beam/default.nix
@@ -0,0 +1,28 @@
+{ lib
+, fetchPypi
+, buildPythonPackage
+, astropy }:
+
+buildPythonPackage rec {
+  pname = "radio_beam";
+  version = "0.2";
+
+  doCheck = false; # the tests requires several pytest plugins that are not in nixpkgs
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0gbnwnk89n8z0xwn41rc7wpr0fwrzkvxficyki3dyqbxq7y3qfrv";
+  };
+
+  propagatedBuildInputs = [ astropy ];
+
+  meta = {
+    description = "Tools for Beam IO and Manipulation";
+    homepage = http://radio-astro-tools.github.io;
+    license = lib.licenses.bsd3;
+    platforms = lib.platforms.all;
+    maintainers = with lib.maintainers; [ smaret ];
+  };
+}
+
+