nixpkgs/pkgs/development/python-modules/pymetno/default.nix
Martin Weinelt 663abfb1e4
pythonPackages.pymetno: 0.5.0 -> 0.5.1
Fixes requests to the updated API endpoint.
2020-06-21 14:57:57 +02:00

32 lines
677 B
Nix

{ stdenv
, buildPythonPackage
, fetchFromGitHub
, aiohttp
, async-timeout
, pytz
, xmltodict
}:
buildPythonPackage rec {
pname = "PyMetno";
version = "0.5.1";
src = fetchFromGitHub {
repo = pname;
owner = "Danielhiversen";
rev = version;
sha256 = "1ihq1lzgzcxbg916izakx9jp0kp1vdrcdwcwwwsws838wc08ax6m";
};
propagatedBuildInputs = [ aiohttp async-timeout pytz xmltodict ];
pythonImportsCheck = [ "metno"];
meta = with stdenv.lib; {
description = "A library to communicate with the met.no api";
homepage = "https://github.com/Danielhiversen/pyMetno/";
license = licenses.mit;
maintainers = with maintainers; [ flyfloh ];
};
}