Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / itsdangerous / default.nix
blobcfc364a4a399744f044eb2705508f9ea8ac9172c
1 { lib
2 , buildPythonPackage
3 , pythonOlder
4 , fetchPypi
5 , freezegun
6 , pytestCheckHook
7 }:
9 buildPythonPackage rec {
10   pname = "itsdangerous";
11   version = "2.1.2";
12   format = "setuptools";
13   disabled = pythonOlder "3.6";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-XbvGizF+XkLzJ/kCF2NUXcP8O/4i5t65aq8fw4h0FWo=";
18   };
20   nativeCheckInputs = [
21     freezegun
22     pytestCheckHook
23   ];
25   pytestFlagsArray = [
26     "-W" "ignore::DeprecationWarning"
27   ];
29   meta = with lib; {
30     description = "Safely pass data to untrusted environments and back";
31     homepage = "https://itsdangerous.palletsprojects.com";
32     license = licenses.bsd3;
33   };