python312Packages.sunweg: 2.1.1 -> 3.0.1

Changelog: https://github.com/rokam/sunweg/releases/tag/3.0.1
This commit is contained in:
Fabian Affolter 2024-06-01 19:28:30 +02:00
parent 4655f2e825
commit ef6cf0d7e7

View File

@ -4,13 +4,14 @@
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
python-dateutil,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "sunweg";
version = "2.1.1";
version = "3.0.1";
pyproject = true;
disabled = pythonOlder "3.7";
@ -19,12 +20,15 @@ buildPythonPackage rec {
owner = "rokam";
repo = "sunweg";
rev = "refs/tags/${version}";
hash = "sha256-fgNtxCBIuNulCfuDaEsM7kL1WpwNE9O+JQ1DMZrz5jA=";
hash = "sha256-9VzDOl393+jm6Nf40X4ZPMBbRc6KOwOQkpTNoqBsw1M=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ requests ];
propagatedBuildInputs = [
python-dateutil
requests
];
# Module has no tests
doCheck = false;