Files
nixpkgs/pkgs/development/python-modules/pymeteoclimatic/default.nix
T
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

41 lines
799 B
Nix

{ lib
, beautifulsoup4
, buildPythonPackage
, fetchFromGitHub
, lxml
, pythonOlder
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pymeteoclimatic";
version = "0.0.6";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "adrianmo";
repo = pname;
rev = version;
sha256 = "0ys0d6jy7416gbsd0pqgvm5ygzn36pjdaklqi4q56vsb13zn7y0h";
};
propagatedBuildInputs = [
beautifulsoup4
lxml
];
nativeCheckInputs = [
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 ];
};
}