5489da1a2b
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-cerberus/versions
20 lines
505 B
Nix
20 lines
505 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, pytestrunner, pytest }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "Cerberus";
|
|
version = "1.3";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0afhm8x812shj1fbj9jri6wcrlv0avcfis7619sl140mlhpgpzkz";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|