nixpkgs-suyu/pkgs/development/python-modules/cerberus11/default.nix

20 lines
519 B
Nix
Raw Normal View History

2018-11-02 09:47:44 +01:00
{ stdenv, buildPythonPackage, fetchPypi, pytestrunner, pytest }:
buildPythonPackage rec {
pname = "Cerberus";
2019-10-24 08:47:26 +02:00
version = "1.3.1";
2018-11-02 09:47:44 +01:00
src = fetchPypi {
inherit pname version;
2019-10-24 08:47:26 +02:00
sha256 = "0be48fc0dc84f83202a5309c0aa17cd5393e70731a1698a50d118b762fbe6875";
2018-11-02 09:47:44 +01:00
};
checkInputs = [ pytestrunner pytest ];
meta = with stdenv.lib; {
homepage = http://python-cerberus.org/;
description = "Lightweight, extensible schema and data validation tool for Python dictionaries";
license = licenses.mit;
};
}