depot/third_party/nixpkgs/pkgs/development/python-modules/pyowm/default.nix
Default email 792b51d22f Project import generated by Copybara.
GitOrigin-RevId: d5f237872975e6fb6f76eef1368b5634ffcd266f
2022-02-20 05:27:41 +00:00

50 lines
873 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, geojson
, pysocks
, pythonOlder
, requests
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pyowm";
version = "3.3.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "csparpa";
repo = pname;
rev = version;
sha256 = "sha256-cSOhm3aDksLBChZzgw1gjUjLQkElR2/xGFMOb9K9RME=";
};
propagatedBuildInputs = [
geojson
pysocks
requests
];
checkInputs = [
pytestCheckHook
];
# Run only tests which don't require network access
pytestFlagsArray = [
"tests/unit"
];
pythonImportsCheck = [
"pyowm"
];
meta = with lib; {
description = "Python wrapper around the OpenWeatherMap web API";
homepage = "https://pyowm.readthedocs.io/";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}