mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-06 09:12:35 +03:00
23 lines
523 B
Nix
23 lines
523 B
Nix
{ 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;
|
|
};
|
|
}
|