blob: 87d275cf7c0b89010db128d0f55fb33c088fbbc1 (
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
|
{
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";
mainProgram = "pipdate";
homepage = "https://github.com/nschloe/pipdate";
license = licenses.gpl3Plus;
maintainers = [ ];
};
}
|