pythonPackages.itsdangerous: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-15 23:40:42 -04:00
committed by Frederik Rietdijk
parent 2fb2f7d4e4
commit 202f7192e3
2 changed files with 22 additions and 13 deletions

View File

@@ -0,0 +1,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;
};
}