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;
};
}

View File

@ -20556,24 +20556,7 @@ in {
};
};
update_checker = buildPythonPackage rec {
name = "update_checker-0.11";
src = pkgs.fetchurl {
url = "mirror://pypi/u/update_checker/${name}.tar.gz";
sha256 = "681bc7c26cffd1564eb6f0f3170d975a31c2a9f2224a32f80fe954232b86f173";
};
propagatedBuildInputs = with self; [ requests ];
doCheck = false;
meta = {
description = "A python module that will check for package updates";
homepage = https://github.com/bboe/update_checker;
license = licenses.bsd2;
};
};
update_checker = callPackage ../development/python-modules/update_checker {};
uritemplate = buildPythonPackage rec {
name = "uritemplate-${version}";