Skip to content

Commit

Permalink
python312Packages.auroranoaa: 0.0.3 -> 0.0.5 (#347366)
Browse files Browse the repository at this point in the history
  • Loading branch information
NickCao authored Oct 9, 2024
2 parents c7815ca + d817131 commit fa128a3
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions pkgs/development/python-modules/auroranoaa/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,37 @@
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
setuptools,
}:

buildPythonPackage rec {
pname = "auroranoaa";
version = "0.0.3";
format = "setuptools";
version = "0.0.5";
pyproject = true;

disabled = pythonOlder "3.6";

src = fetchFromGitHub {
owner = "djtimca";
repo = "aurora-api";
rev = version;
hash = "sha256-ho0O5aEHCKaTuWh2eW2kY5a7dVGIGBLm4nKxAMq0bZ4=";
rev = "refs/tags/${version}";
hash = "sha256-bQDFSbYFsGtvPuJNMykynOpBTIeloUoCVRtIuHXR4n0=";
};

propagatedBuildInputs = [ aiohttp ];
build-system = [ setuptools ];

dependencies = [ aiohttp ];

# Project has no tests
doCheck = false;

pythonImportsCheck = [ "auroranoaa" ];

meta = with lib; {
description = "Python wrapper for the Aurora API";
homepage = "https://github.com/djtimca/aurora-api";
license = with licenses; [ asl20 ];
changelog = "https://github.com/djtimca/aurora-api/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
};
}

0 comments on commit fa128a3

Please sign in to comment.