My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/update_checker/default.nix

24 lines
559 B

{ lib, buildPythonPackage, fetchPypi, requests, isPy27
}:
buildPythonPackage rec {
pname = "update_checker";
version = "0.18.0";
disabled = isPy27;
src = fetchPypi {
inherit pname version;
sha256 = "6a2d45bb4ac585884a6b03f9eade9161cedd9e8111545141e9aa9058932acb13";
};
propagatedBuildInputs = [ requests ];
# requires network
doCheck = false;
meta = with lib; {
description = "A python module that will check for package updates";
homepage = "https://github.com/bboe/update_checker";
license = licenses.bsd2;
};
}