Files
nixpkgs/pkgs/development/python-modules/cerberus/default.nix
T

20 lines
517 B
Nix
Raw Normal View History

2018-04-06 18:46:49 +02:00
{ stdenv, buildPythonPackage, fetchPypi, pytestrunner, pytest }:
2018-03-31 18:13:52 +02:00
buildPythonPackage rec {
pname = "Cerberus";
2018-06-12 18:46:58 +02:00
version = "1.2";
2018-03-31 18:13:52 +02:00
src = fetchPypi {
inherit pname version;
2018-06-12 18:46:58 +02:00
sha256 = "f5c2e048fb15ecb3c088d192164316093fcfa602a74b3386eefb2983aa7e800a";
2018-03-31 18:13:52 +02:00
};
2018-04-06 18:46:49 +02:00
checkInputs = [ pytestrunner pytest ];
2018-03-31 18:13:52 +02:00
meta = with stdenv.lib; {
homepage = http://python-cerberus.org/;
description = "Lightweight, extensible schema and data validation tool for Python dictionaries";
license = licenses.mit;
};
}