blob: 313b63fcca8377c41474d1624a1049c3867a05d1 (
plain)
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
|
{
lib,
appdirs,
buildPythonPackage,
fetchPypi,
packaging,
requests,
rich,
setuptools,
wheel,
}:
buildPythonPackage rec {
pname = "pipdate";
version = "0.5.6";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-G2t+wsVGj7cDbsnWss7XqKU421WqygPzAZkhbTu9Jks=";
};
nativeBuildInputs = [ wheel ];
propagatedBuildInputs = [
appdirs
packaging
requests
rich
setuptools
];
# Tests require network access and pythonImportsCheck requires configuration file
doCheck = false;
meta = {
description = "Pip update helpers";
mainProgram = "pipdate";
homepage = "https://github.com/nschloe/pipdate";
license = lib.licenses.gpl3Plus;
maintainers = [ ];
};
}
|