python2Packages.itsdangerous: reinit at 1.1.0
This commit is contained in:
parent
78a54f4704
commit
6d0ed6486e
2 changed files with 23 additions and 0 deletions
21
pkgs/development/python-modules/itsdangerous/1.nix
Normal file
21
pkgs/development/python-modules/itsdangerous/1.nix
Normal 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;
|
||||
};
|
||||
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue