python312Packages.pysuezv2: init at 1.3.2 (#360460)

This commit is contained in:
Fabian Affolter 2024-12-02 08:58:22 +01:00 committed by GitHub
commit a9f0bf6adb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,40 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
aiohttp,
pythonOlder,
}:
buildPythonPackage rec {
pname = "pysuezv2";
version = "1.3.2";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = "jb101010-2";
repo = "pySuez";
rev = "refs/tags/${version}";
hash = "sha256-aThZN5Ece9zzEICjLj2HmYoLwDhd7rft3Il3kM73h7M=";
};
build-system = [ hatchling ];
dependencies = [ aiohttp ];
# Module has no tests
doCheck = false;
pythonImportsCheck = [ "pysuez" ];
meta = {
description = "Module for dealing with water consumption data from Suez";
homepage = "https://github.com/jb101010-2/pySuez";
changelog = "https://github.com/jb101010-2/pySuez/releases/tag/${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ ];
};
}

View File

@ -10574,6 +10574,8 @@ self: super: with self; {
pysuez = callPackage ../development/python-modules/pysuez { };
pysuezv2 = callPackage ../development/python-modules/pysuezv2 { };
pysqlitecipher = callPackage ../development/python-modules/pysqlitecipher { };
pysyncthru = callPackage ../development/python-modules/pysyncthru { };