Files
nixpkgs/pkgs/development/python-modules/radio_beam/default.nix
R. RyanTM 734341104c python37Packages.radio_beam: 0.2 -> 0.3.1 (#57450)
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-radio_beam/versions
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 ];
};
}