From 3b9a34ff30767613a589e3afb128f94f106f2d59 Mon Sep 17 00:00:00 2001 From: Sébastien Maret Date: Mon, 28 May 2018 12:38:44 +0200 Subject: radio_beam: init at 0.2 --- .../python-modules/radio_beam/default.nix | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pkgs/development/python-modules/radio_beam/default.nix (limited to 'pkgs/development') 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 ]; + }; +} + + -- cgit 1.4.1