pythonPackages.datadog: fix build
This commit is contained in:
parent
a8cb29732d
commit
c1432308b8
1 changed files with 4 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi
|
{ lib, buildPythonPackage, fetchPypi, pythonOlder
|
||||||
, decorator, requests, simplejson, pillow
|
, decorator, requests, simplejson, pillow, typing
|
||||||
, nose, mock, pytest, freezegun }:
|
, nose, mock, pytest, freezegun }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -15,7 +15,8 @@ buildPythonPackage rec {
|
||||||
find . -name '*.pyc' -exec rm {} \;
|
find . -name '*.pyc' -exec rm {} \;
|
||||||
'';
|
'';
|
||||||
|
|
||||||
propagatedBuildInputs = [ decorator requests simplejson pillow ];
|
propagatedBuildInputs = [ decorator requests simplejson pillow ]
|
||||||
|
++ lib.optionals (pythonOlder "3.5") [ typing ];
|
||||||
|
|
||||||
checkInputs = [ nose mock pytest freezegun ];
|
checkInputs = [ nose mock pytest freezegun ];
|
||||||
checkPhase = ''
|
checkPhase = ''
|
||||||
|
|
Loading…
Reference in a new issue