summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/update-checker/default.nix
blob: 54dc1c55235732571f87c81b0adc5c9dc6fdea73 (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
{
  lib,
  buildPythonPackage,
  fetchPypi,
  requests,
  isPy27,
}:

buildPythonPackage rec {
  pname = "update-checker";
  version = "0.18.0";
  format = "setuptools";
  disabled = isPy27;

  src = fetchPypi {
    pname = "update_checker";
    inherit version;
    sha256 = "6a2d45bb4ac585884a6b03f9eade9161cedd9e8111545141e9aa9058932acb13";
  };

  propagatedBuildInputs = [ requests ];

  # requires network
  doCheck = false;

  meta = {
    description = "Python module that will check for package updates";
    homepage = "https://github.com/bboe/update_checker";
    license = lib.licenses.bsd2;
  };
}