python311Packages.pymeteoclimatic: refactor
This commit is contained in:
parent
6ed7e90a06
commit
1e99cf2c07
1 changed files with 15 additions and 6 deletions
|
@ -5,21 +5,27 @@
|
|||
, lxml
|
||||
, pythonOlder
|
||||
, pytestCheckHook
|
||||
, setuptools
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pymeteoclimatic";
|
||||
version = "0.1.0";
|
||||
format = "setuptools";
|
||||
disabled = pythonOlder "3.6";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "adrianmo";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-rP0+OYDnQ4GuoV7DzR6jtgH6ilTMLjdaEFJcz3L0GYQ=";
|
||||
repo = "pymeteoclimatic";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-rP0+OYDnQ4GuoV7DzR6jtgH6ilTMLjdaEFJcz3L0GYQ=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
beautifulsoup4
|
||||
lxml
|
||||
|
@ -29,11 +35,14 @@ buildPythonPackage rec {
|
|||
pytestCheckHook
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "meteoclimatic" ];
|
||||
pythonImportsCheck = [
|
||||
"meteoclimatic"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python wrapper around the Meteoclimatic service";
|
||||
homepage = "https://github.com/adrianmo/pymeteoclimatic";
|
||||
changelog = "https://github.com/adrianmo/pymeteoclimatic/releases/tag/${version}";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue