2017-09-05 10:16:41 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2017-12-30 11:28:33 +00:00
|
|
|
, itsdangerous, hypothesis
|
2019-06-16 20:59:06 +01:00
|
|
|
, pytest, requests }:
|
2017-09-05 10:16:41 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "Werkzeug";
|
2019-08-18 09:33:13 +01:00
|
|
|
version = "0.15.5";
|
2017-09-05 10:16:41 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-08-18 09:33:13 +01:00
|
|
|
sha256 = "a13b74dd3c45f758d4ebdb224be8f1ab8ef58b3c0ffc1783a8c7d9f4f50227e6";
|
2017-09-05 10:16:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ itsdangerous ];
|
2019-03-23 16:08:01 +00:00
|
|
|
checkInputs = [ pytest requests hypothesis ];
|
2017-12-30 11:28:33 +00:00
|
|
|
|
|
|
|
checkPhase = ''
|
2019-03-23 16:08:01 +00:00
|
|
|
pytest ${stdenv.lib.optionalString stdenv.isDarwin "-k 'not test_get_machine_id'"}
|
2017-12-30 11:28:33 +00:00
|
|
|
'';
|
2017-09-05 10:16:41 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2019-05-25 02:07:00 +01:00
|
|
|
homepage = "https://palletsprojects.com/p/werkzeug/";
|
2017-09-05 10:16:41 +01:00
|
|
|
description = "A WSGI utility library for Python";
|
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|