python2Packages.itsdangerous: reinit at 1.1.0

This commit is contained in:
Martin Weinelt 2021-06-02 23:30:58 +02:00 committed by Jonathan Ringer
parent 78a54f4704
commit 6d0ed6486e
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "itsdangerous";
version = "1.1.0";
src = fetchPypi {
inherit pname version;
sha256 = "321b033d07f2a4136d3ec762eac9f16a10ccd60f53c0c91af90217ace7ba1f19";
};
meta = with lib; {
description = "Helpers to pass trusted data to untrusted environments and back";
homepage = "https://pypi.python.org/pypi/itsdangerous/";
license = licenses.bsd0;
};
}

View file

@ -188,6 +188,8 @@ with self; with super; {
isort = callPackage ../development/python-modules/isort/4.nix { };
itsdangerous = callPackage ../development/python-modules/itsdangerous/1.nix { };
jaraco_functools = callPackage ../development/python-modules/jaraco_functools/2.nix { };
jaraco_stream = callPackage ../development/python-modules/jaraco_stream/2.nix { };