53 lines
914 B
Nix
53 lines
914 B
Nix
|
{
|
||
|
lib,
|
||
|
aenum,
|
||
|
buildPythonPackage,
|
||
|
fetchFromGitHub,
|
||
|
pydantic,
|
||
|
python-dateutil,
|
||
|
pythonOlder,
|
||
|
setuptools,
|
||
|
urllib3,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "weheat";
|
||
|
version = "2024.09.23";
|
||
|
pyproject = true;
|
||
|
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "wefabricate";
|
||
|
repo = "wh-python";
|
||
|
rev = "refs/tags/${version}";
|
||
|
hash = "sha256-egxc4gJaFIjbdvDVmenN61Rsg1NmlJSqxdG/7con9mU=";
|
||
|
};
|
||
|
|
||
|
pythonRelaxDeps = [
|
||
|
"urllib3"
|
||
|
"pydantic"
|
||
|
];
|
||
|
|
||
|
build-system = [ setuptools ];
|
||
|
|
||
|
dependencies = [
|
||
|
aenum
|
||
|
pydantic
|
||
|
python-dateutil
|
||
|
urllib3
|
||
|
];
|
||
|
|
||
|
# Module has no tests
|
||
|
doCheck = false;
|
||
|
|
||
|
pythonImportsCheck = [ "weheat" ];
|
||
|
|
||
|
meta = {
|
||
|
description = "Library to interact with the weheat API";
|
||
|
homepage = "https://github.com/wefabricate/wh-python";
|
||
|
license = lib.licenses.mit;
|
||
|
maintainers = with lib.maintainers; [ fab ];
|
||
|
};
|
||
|
}
|