mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
pythonPackages.lazr-restfulclient: prepare tests
This commit is contained in:
parent
d0cb896be2
commit
f5977d20b3
1 changed files with 7 additions and 1 deletions
|
@ -8,6 +8,10 @@
|
|||
, setuptools
|
||||
, six
|
||||
, wadllib
|
||||
, fixtures
|
||||
, lazr-uri
|
||||
, pytestCheckHook
|
||||
, wsgi-intercept
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -23,7 +27,9 @@ buildPythonPackage rec {
|
|||
|
||||
propagatedBuildInputs = [ distro httplib2 oauthlib setuptools six wadllib ];
|
||||
|
||||
doCheck = false; # requires to package lazr.restful, lazr.authentication, and wsgi_intercept
|
||||
# E ModuleNotFoundError: No module named 'lazr.uri'
|
||||
doCheck = false;
|
||||
checkInputs = [ fixtures lazr-uri pytestCheckHook wsgi-intercept ];
|
||||
|
||||
pythonImportsCheck = [ "lazr.restfulclient" ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue