From 380b7086bc93da9abd3484ccf94f70b000e1ac63 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Fri, 30 Nov 2018 08:25:54 -0500 Subject: [PATCH] pythonPackages.lz4 refactor fix broken build --- pkgs/development/python-modules/lz4/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/lz4/default.nix b/pkgs/development/python-modules/lz4/default.nix index 89eca9a8538..a9a7783fe77 100644 --- a/pkgs/development/python-modules/lz4/default.nix +++ b/pkgs/development/python-modules/lz4/default.nix @@ -1,7 +1,11 @@ { stdenv , buildPythonPackage , fetchPypi -, nose +, pytestrunner +, pytest +, psutil +, pkgconfig +, setuptools_scm }: buildPythonPackage rec { @@ -13,7 +17,8 @@ buildPythonPackage rec { sha256 = "ec265f7c3fc3df706e9579bde632ceeef9278858d7ae87c376a2954d11e9ea39"; }; - buildInputs = [ nose ]; + buildInputs = [ setuptools_scm pytestrunner pkgconfig ]; + checkInputs = [ pytest psutil ]; meta = with stdenv.lib; { description = "Compression library";