nixpkgs/pkgs/development/python-modules/radio_beam/default.nix
2019-03-15 23:29:49 +01:00

29 lines
621 B
Nix

{ lib
, fetchPypi
, buildPythonPackage
, astropy }:
buildPythonPackage rec {
pname = "radio_beam";
version = "0.3.1";
doCheck = false; # the tests requires several pytest plugins that are not in nixpkgs
src = fetchPypi {
inherit pname version;
sha256 = "1wgd9dyz3pcc9ighkclb6qfyshwbg35s57lz6k62jhcxpvp8r5zb";
};
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 ];
};
}