python.pkgs.update_checker: 0.11 -> 0.16
This commit is contained in:
22
pkgs/development/python-modules/update_checker/default.nix
Normal file
22
pkgs/development/python-modules/update_checker/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user