Update aider (#375634)
[NixPkgs.git] / pkgs / development / python-modules / weheat / default.nix
blobec798a079ebfc6c60fe3f6cdfc3830360dd230e5
2   lib,
3   aenum,
4   buildPythonPackage,
5   fetchFromGitHub,
6   pydantic,
7   python-dateutil,
8   pythonOlder,
9   setuptools,
10   urllib3,
13 buildPythonPackage rec {
14   pname = "weheat";
15   version = "2024.12.22";
16   pyproject = true;
18   disabled = pythonOlder "3.7";
20   src = fetchFromGitHub {
21     owner = "wefabricate";
22     repo = "wh-python";
23     tag = version;
24     hash = "sha256-hd0mqdcj+rvrYCvxhK3ewuiDekWUgTD7JypjL/EMqv8=";
25   };
27   pythonRelaxDeps = [
28     "urllib3"
29     "pydantic"
30   ];
32   build-system = [ setuptools ];
34   dependencies = [
35     aenum
36     pydantic
37     python-dateutil
38     urllib3
39   ];
41   # Module has no tests
42   doCheck = false;
44   pythonImportsCheck = [ "weheat" ];
46   meta = {
47     description = "Library to interact with the weheat API";
48     homepage = "https://github.com/wefabricate/wh-python";
49     license = lib.licenses.mit;
50     maintainers = with lib.maintainers; [ fab ];
51   };