nixpkgs/pkgs/development/python-modules/werkzeug/default.nix

34 lines
997 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi
2017-12-30 12:28:33 +01:00
, itsdangerous, hypothesis
, pytest, requests, glibcLocales }:
buildPythonPackage rec {
pname = "Werkzeug";
2019-04-16 19:15:42 +02:00
version = "0.15.2";
src = fetchPypi {
inherit pname version;
2019-04-16 19:15:42 +02:00
sha256 = "0a73e8bb2ff2feecfc5d56e6f458f5b99290ef34f565ffb2665801ff7de6af7a";
};
propagatedBuildInputs = [ itsdangerous ];
checkInputs = [ pytest requests hypothesis ];
2017-12-30 12:28:33 +01:00
# Hi! New version of Werkzeug? Please double-check that this commit is
# inclucded, and then remove the following patch.
# https://github.com/pallets/werkzeug/commit/1cfdcf9824cb20e362979e8f7734012926492165
patchPhase = ''
substituteInPlace "tests/test_serving.py" --replace "'python'" "sys.executable"
'';
2017-12-30 12:28:33 +01:00
checkPhase = ''
pytest ${stdenv.lib.optionalString stdenv.isDarwin "-k 'not test_get_machine_id'"}
2017-12-30 12:28:33 +01:00
'';
meta = with stdenv.lib; {
homepage = http://werkzeug.pocoo.org/;
description = "A WSGI utility library for Python";
license = licenses.bsd3;
};
}