2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, buildPythonPackage, fetchPypi
|
2017-12-30 11:28:33 +00:00
|
|
|
, itsdangerous, hypothesis
|
2020-07-31 09:50:08 +01:00
|
|
|
, pytestCheckHook, requests
|
2020-02-06 15:03:25 +00:00
|
|
|
, pytest-timeout
|
2020-07-31 09:50:08 +01:00
|
|
|
, isPy3k
|
2020-02-06 15:03:25 +00:00
|
|
|
}:
|
2017-09-05 10:16:41 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "Werkzeug";
|
2020-06-06 07:47:37 +01:00
|
|
|
version = "1.0.1";
|
2017-09-05 10:16:41 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-06 07:47:37 +01:00
|
|
|
sha256 = "6c80b1e5ad3665290ea39320b91e1be1e0d5f60652b964a3070216de83d2e47c";
|
2017-09-05 10:16:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ itsdangerous ];
|
2020-07-31 09:50:08 +01:00
|
|
|
checkInputs = [ pytestCheckHook requests hypothesis pytest-timeout ];
|
2017-12-30 11:28:33 +00:00
|
|
|
|
2021-01-24 00:29:22 +00:00
|
|
|
disabledTests = lib.optionals stdenv.isDarwin [
|
2020-07-31 09:50:08 +01:00
|
|
|
"test_get_machine_id"
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with 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;
|
|
|
|
};
|
|
|
|
}
|