python.pkgs.update_checker: 0.11 -> 0.16

This commit is contained in:
Joerg Thalheim
2017-11-07 12:41:27 +00:00
parent 3339a7dc7c
commit 8fb1ec1af4
2 changed files with 23 additions and 18 deletions

View File

@@ -0,0 +1,22 @@
{ stdenv, buildPythonPackage, fetchPypi, requests}:
buildPythonPackage rec {
pname = "update_checker";
version = "0.16";
src = fetchPypi {
inherit pname version;
sha256 = "1f38l40d32dm0avcidf3dmikma8z0la84yngj88v4xygzi399qvh";
};
propagatedBuildInputs = [ requests ];
# requires network
doCheck = false;
meta = with stdenv.lib; {
description = "A python module that will check for package updates";
homepage = https://github.com/bboe/update_checker;
license = licenses.bsd2;
};
}