python3Packages.dwdwfsapi: 1.0.7 -> 1.1.0

https://github.com/stephan192/dwdwfsapi/blob/v1.1.0/CHANGELOG.md
This commit is contained in:
Martin Weinelt
2024-04-22 13:59:54 +02:00
parent cae2b904da
commit 2c07c637f4
@@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, hatchling
, requests
, ciso8601
, pythonOlder
@@ -8,17 +9,21 @@
buildPythonPackage rec {
pname = "dwdwfsapi";
version = "1.0.7";
format = "setuptools";
version = "1.1.0";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-7le1F+581JwrBX/C1aaqsDaSpIt0yNsNKiGnJtHUg5s=";
hash = "sha256-7dIVD+4MiYtsjAM5j67MlbiUN2Q5DpK6bUU0ZuHN2rk=";
};
propagatedBuildInputs = [
build-system = [
hatchling
];
dependencies = [
requests
ciso8601
];