mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
astroquery: init at 0.3.8 (#50360)
Co-Authored-By: smaret <sebastien.maret@icloud.com>
This commit is contained in:
parent
9d53806ef3
commit
bc64d58866
2 changed files with 32 additions and 0 deletions
30
pkgs/development/python-modules/astroquery/default.nix
Normal file
30
pkgs/development/python-modules/astroquery/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
{ pkgs
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, astropy
|
||||||
|
, requests
|
||||||
|
, keyring
|
||||||
|
, beautifulsoup4
|
||||||
|
, html5lib
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "astroquery";
|
||||||
|
version = "0.3.8";
|
||||||
|
|
||||||
|
doCheck = false; # Tests require the pytest-astropy package
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "800d9730c9e2bd299f14c29b4d709d1605c82833223a2e4f784fea7ad805c168";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ astropy requests keyring beautifulsoup4 html5lib ];
|
||||||
|
|
||||||
|
meta = with pkgs.lib; {
|
||||||
|
description = "Functions and classes to access online data resources";
|
||||||
|
homepage = "https://astroquery.readthedocs.io/";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = [ maintainers.smaret ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -196,6 +196,8 @@ in {
|
||||||
|
|
||||||
astropy = callPackage ../development/python-modules/astropy { };
|
astropy = callPackage ../development/python-modules/astropy { };
|
||||||
|
|
||||||
|
astroquery = callPackage ../development/python-modules/astroquery { };
|
||||||
|
|
||||||
atom = callPackage ../development/python-modules/atom { };
|
atom = callPackage ../development/python-modules/atom { };
|
||||||
|
|
||||||
augeas = callPackage ../development/python-modules/augeas {
|
augeas = callPackage ../development/python-modules/augeas {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue