about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytools/default.nix
blob: f755014155ddda4b0e93c9de6dc50a4cd41fe2d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
  lib,
  buildPythonPackage,
  fetchPypi,
  pythonOlder,
  decorator,
  numpy,
  platformdirs,
  typing-extensions,
  pytestCheckHook,
}:

buildPythonPackage rec {
  pname = "pytools";
  version = "2024.1.5";
  format = "setuptools";
  disabled = pythonOlder "3.6";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-jDd7sf/ctRAzAbjn6U8By+Nlc6AeAgQ0/qlikbHxrBk=";
  };

  propagatedBuildInputs = [
    decorator
    numpy
    platformdirs
  ] ++ lib.optionals (pythonOlder "3.11") [ typing-extensions ];

  nativeCheckInputs = [ pytestCheckHook ];

  pythonImportsCheck = [
    "pytools"
    "pytools.batchjob"
    "pytools.lex"
  ];

  meta = {
    homepage = "https://github.com/inducer/pytools/";
    description = "Miscellaneous Python lifesavers";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ artuuge ];
  };
}