1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

python-cerberus: init at 0.9.2

This commit is contained in:
Yuri Albuquerque 2016-01-08 09:56:40 -04:00
parent f036c069ed
commit a04caed0b3

View file

@ -2492,6 +2492,21 @@ in modules // {
};
};
cerberus = buildPythonPackage rec {
name = "Cerberus-${version}";
version = "0.9.2";
src = pkgs.fetchurl {
url = "https://pypi.python.org/packages/source/C/Cerberus/${name}.tar.gz";
sha256 = "1km7hvns1snrmcwz58bssi4wv3gwd34zm1z1hwjylmpqrfrcf8mi";
};
meta = {
homepage = http://python-cerberus.org/;
description = "Lightweight, extensible schema and data validation tool for Python dictionaries";
license = licenses.mit;
};
};
certifi = buildPythonPackage rec {
name = "certifi-${version}";