Skip to content

Commit

Permalink
pythonPackages.nvchecker: 1.1 -> 1.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
marsam committed Nov 25, 2018
1 parent ed99c22 commit 5000129
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions pkgs/development/python-modules/nvchecker/default.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, pytest, setuptools, structlog, pytest-asyncio, pytest_xdist, flaky, tornado }:
{ stdenv, buildPythonPackage, fetchPypi, pythonOlder, pytest, setuptools, structlog, pytest-asyncio, pytest_xdist, flaky, tornado, pycurl }:

buildPythonPackage rec {
pname = "nvchecker";
version = "1.1";
version = "1.2.7";

src = fetchPypi {
inherit pname version;
sha256 = "1nk9ff26s5r6v5v7w4l9110qi5kmhllvwk5kh20zyyhdvxv72m3i";
sha256 = "19qc2wwkdr701mx94r75ayq5h2jz3q620hcqaj2ng9qdgxm90940";
};

# tornado is not present in the tarball setup.py but is required by the executable
propagatedBuildInputs = [ setuptools structlog tornado ];
propagatedBuildInputs = [ setuptools structlog tornado pycurl ];
checkInputs = [ pytest pytest-asyncio pytest_xdist flaky ];

# Disable tests for now, because our version of pytest seems to be too new
Expand Down

0 comments on commit 5000129

Please sign in to comment.