nixpkgs/pkgs/development/python-modules/nvchecker/default.nix

29 lines
878 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, pytest, setuptools, structlog, pytest-asyncio, flaky, tornado, pycurl, pytest-httpbin }:
2018-10-14 18:47:14 +01:00
buildPythonPackage rec {
pname = "nvchecker";
version = "1.5";
2018-10-14 18:47:14 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "0973f7c3ea5ad65fb19837e8915882a9f2c2f21f5c2589005478697391fea2fd";
2018-10-14 18:47:14 +01:00
};
2018-11-25 20:44:58 +00:00
propagatedBuildInputs = [ setuptools structlog tornado pycurl ];
checkInputs = [ pytest pytest-asyncio flaky pytest-httpbin ];
2018-10-14 18:47:14 +01:00
# disable `test_ubuntupkg` because it requires network
2018-10-14 18:47:14 +01:00
checkPhase = ''
py.test -m "not needs_net" --ignore=tests/test_ubuntupkg.py
2018-10-14 18:47:14 +01:00
'';
disabled = pythonOlder "3.5";
meta = with stdenv.lib; {
homepage = "https://github.com/lilydjwg/nvchecker";
2018-10-14 18:47:14 +01:00
description = "New version checker for software";
license = licenses.mit;
maintainers = with maintainers; [ marsam ];
};
}