pyditz: make python.pkgs.cerberus11 private to it.

This commit is contained in:
Frederik Rietdijk
2019-11-19 11:40:59 +01:00
parent 9c52da0e0c
commit 34715da5dc
2 changed files with 9 additions and 5 deletions

View File

@@ -1,19 +0,0 @@
{ stdenv, buildPythonPackage, fetchPypi, pytestrunner, pytest }:
buildPythonPackage rec {
pname = "Cerberus";
version = "1.1";
src = fetchPypi {
inherit pname version;
sha256 = "1pxzr8sfm2hc5s96m9k044i44nwkva70n0ypr6a35v73zn891cx5";
};
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;
};
}