depot/third_party/nixpkgs/pkgs/development/python-modules/pymeteoclimatic/default.nix
Default email 841d9c7fc1 Project import generated by Copybara.
GitOrigin-RevId: 3a8d7958a610cd3fec3a6f424480f91a1b259185
2021-06-29 00:13:55 +01:00

39 lines
768 B
Nix

{ lib
, beautifulsoup4
, buildPythonPackage
, fetchFromGitHub
, lxml
, pythonOlder
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pymeteoclimatic";
version = "0.0.6";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "adrianmo";
repo = pname;
rev = version;
sha256 = "0ys0d6jy7416gbsd0pqgvm5ygzn36pjdaklqi4q56vsb13zn7y0h";
};
propagatedBuildInputs = [
beautifulsoup4
lxml
];
checkInputs = [
pytestCheckHook
];
pythonImportsCheck = [ "meteoclimatic" ];
meta = with lib; {
description = "Python wrapper around the Meteoclimatic service";
homepage = "https://github.com/adrianmo/pymeteoclimatic";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}