mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
pythonPackages.pyatmo: init at 1.10
This commit is contained in:
parent
de5a9dea88
commit
d5e745f412
24
pkgs/development/python-modules/pyatmo/default.nix
Normal file
24
pkgs/development/python-modules/pyatmo/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pyatmo";
|
||||||
|
version = "1.10";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "13ca794416707b8cefcb7584bbfff65a4640fcc2510ad73e818fef94d424fca6";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Upstream provides no unit tests.
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Simple API to access Netatmo weather station data";
|
||||||
|
license = licenses.mit;
|
||||||
|
homepage = https://github.com/jabesq/netatmo-api-python;
|
||||||
|
maintainers = with maintainers; [ delroth ];
|
||||||
|
};
|
||||||
|
}
|
@ -3800,6 +3800,8 @@ in {
|
|||||||
|
|
||||||
pyasn1-modules = callPackage ../development/python-modules/pyasn1-modules { };
|
pyasn1-modules = callPackage ../development/python-modules/pyasn1-modules { };
|
||||||
|
|
||||||
|
pyatmo = callPackage ../development/python-modules/pyatmo { };
|
||||||
|
|
||||||
pyaudio = callPackage ../development/python-modules/pyaudio { };
|
pyaudio = callPackage ../development/python-modules/pyaudio { };
|
||||||
|
|
||||||
pysam = callPackage ../development/python-modules/pysam { };
|
pysam = callPackage ../development/python-modules/pysam { };
|
||||||
|
Loading…
Reference in New Issue
Block a user