Files
nixpkgs/pkgs/development/python-modules/openevsewifi/default.nix
T
Winter a19cd4ffb1 Revert "treewide: replace rev with tag"
This reverts commit 65a333600d.

This wasn't tested for correctness with something like fodwatch [0],
and should not have been (self-)merged so quickly, especially without
further review.

It also resulted in the breakage of at least one package [1] (and that's
the one we know of and was caught).

A few packages that were updated in between this commit and this revert
were not reverted back to using `rev`, but other than that, this is a
1:1 revert.

[0]: https://codeberg.org/raphaelr/fodwatch
[1]: https://github.com/NixOS/nixpkgs/pull/396904 / 758551e458
2025-04-08 02:57:25 -04:00

63 lines
1.4 KiB
Nix

{
lib,
buildPythonPackage,
deprecated,
fetchFromGitHub,
fetchpatch,
poetry-core,
pytestCheckHook,
pythonOlder,
requests,
requests-mock,
}:
buildPythonPackage rec {
pname = "openevsewifi";
version = "1.1.2";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "miniconfig";
repo = "python-openevse-wifi";
rev = "v${version}";
hash = "sha256-7+BC5WG0JoyHNjgsoJBQRVDpmdXMJCV4bMf6pIaS5qo=";
};
nativeBuildInputs = [ poetry-core ];
propagatedBuildInputs = [
deprecated
requests
];
nativeCheckInputs = [
requests-mock
pytestCheckHook
];
patches = [
# Switch to poetry-core, https://github.com/miniconfig/python-openevse-wifi/pull/31
(fetchpatch {
name = "switch-to-poetry-core.patch";
url = "https://github.com/miniconfig/python-openevse-wifi/commit/1083868dd9f39a8ad7bb17f02cea1b8458e5b82d.patch";
hash = "sha256-XGeyi/PchBju1ICgL/ZCDGCbWwIJmLAcHuKaj+kDsI0=";
})
];
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'pytest-cov = "^2.8.1"' ""
'';
pythonImportsCheck = [ "openevsewifi" ];
meta = with lib; {
description = "Module for communicating with the wifi module from OpenEVSE";
homepage = "https://github.com/miniconfig/python-openevse-wifi";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}