about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pipdate/default.nix
blob: 172401620a596c928d4d8272b44c65e78078db71 (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
45
46
47
48
{ lib
, appdirs
, buildPythonPackage
, fetchPypi
, importlib-metadata
, packaging
, pythonOlder
, requests
, rich
, setuptools
, wheel
}:

buildPythonPackage rec {
  pname = "pipdate";
  version = "0.5.6";
  format = "pyproject";
  disabled = pythonOlder "3.6";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-G2t+wsVGj7cDbsnWss7XqKU421WqygPzAZkhbTu9Jks=";
  };

  nativeBuildInputs = [
    wheel
  ];

  propagatedBuildInputs = [
    appdirs
    packaging
    requests
    rich
    setuptools
  ] ++ lib.optionals (pythonOlder "3.8") [
    importlib-metadata
  ];

  # Tests require network access and pythonImportsCheck requires configuration file
  doCheck = false;

  meta = with lib; {
    description = "pip update helpers";
    homepage = "https://github.com/nschloe/pipdate";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ ];
  };
}