summary refs log tree commit diff
path: root/pkgs/development/python-modules/itsdangerous/default.nix
blob: 385708f436ec92c05731dd00baad1415c93eb922 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv
, buildPythonPackage
, fetchPypi
}:

buildPythonPackage rec {
  pname = "itsdangerous";
  version = "0.24";

  src = fetchPypi {
    inherit pname version;
    sha256 = "06856q6x675ly542ig0plbqcyab6ksfzijlyf1hzhgg3sgwgrcyb";
  };

  meta = with stdenv.lib; {
    description = "Helpers to pass trusted data to untrusted environments and back";
    homepage = "https://pypi.python.org/pypi/itsdangerous/";
    license = licenses.bsd0;
  };

}