734341104c
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
29 lines
621 B
Nix
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 ];
|
|
};
|
|
}
|
|
|
|
|