pythonPackages.lz4 refactor fix broken build

This commit is contained in:
Chris Ostrouchov 2018-11-30 08:25:54 -05:00 committed by Frederik Rietdijk
parent c631b307a0
commit 380b7086bc

View File

@ -1,7 +1,11 @@
{ stdenv { stdenv
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, nose , pytestrunner
, pytest
, psutil
, pkgconfig
, setuptools_scm
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -13,7 +17,8 @@ buildPythonPackage rec {
sha256 = "ec265f7c3fc3df706e9579bde632ceeef9278858d7ae87c376a2954d11e9ea39"; sha256 = "ec265f7c3fc3df706e9579bde632ceeef9278858d7ae87c376a2954d11e9ea39";
}; };
buildInputs = [ nose ]; buildInputs = [ setuptools_scm pytestrunner pkgconfig ];
checkInputs = [ pytest psutil ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Compression library"; description = "Compression library";