Unverified Commit a133ad3c authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.pymeteoclimatic: 0.1.0 -> 0.1.1 (#486440)

parents 687f5812 bc68c722
Loading
Loading
Loading
Loading
+9 −9
Original line number Diff line number Diff line
@@ -8,21 +8,21 @@
  setuptools,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "pymeteoclimatic";
  version = "0.1.0";
  version = "0.1.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "adrianmo";
    repo = "pymeteoclimatic";
    tag = version;
    hash = "sha256-rP0+OYDnQ4GuoV7DzR6jtgH6ilTMLjdaEFJcz3L0GYQ=";
    tag = finalAttrs.version;
    hash = "sha256-Yln+uUwnb5mlPS3uRRzpAH6kSc9hU2jEnhk/3ifiwWI=";
  };

  nativeBuildInputs = [ setuptools ];
  build-system = [ setuptools ];

  propagatedBuildInputs = [
  dependencies = [
    beautifulsoup4
    lxml
  ];
@@ -34,8 +34,8 @@ buildPythonPackage rec {
  meta = {
    description = "Python wrapper around the Meteoclimatic service";
    homepage = "https://github.com/adrianmo/pymeteoclimatic";
    changelog = "https://github.com/adrianmo/pymeteoclimatic/releases/tag/${version}";
    license = with lib.licenses; [ mit ];
    changelog = "https://github.com/adrianmo/pymeteoclimatic/releases/tag/${finalAttrs.src.tag}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})