pythonPackages.cerberus: Move to own file
This commit is contained in:
committed by
Frederik Rietdijk
parent
743b229c86
commit
6565c7cf7a
17
pkgs/development/python-modules/cerberus/default.nix
Normal file
17
pkgs/development/python-modules/cerberus/default.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "Cerberus";
|
||||
version = "0.9.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1km7hvns1snrmcwz58bssi4wv3gwd34zm1z1hwjylmpqrfrcf8mi";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://python-cerberus.org/;
|
||||
description = "Lightweight, extensible schema and data validation tool for Python dictionaries";
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user