forked from mirrors/nixpkgs
27 lines
538 B
Nix
27 lines
538 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, pythonAtLeast
|
|
, fetchPypi
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "validictory";
|
|
version = "1.1.2";
|
|
|
|
disabled = pythonAtLeast "3.10"; # abandoned, should be removed when we move to py310/311
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1fim11vj990rmn59qd67knccjx1p4an7gavbgprpabsrb13bi1rs";
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Validate dicts against a schema";
|
|
homepage = "https://github.com/sunlightlabs/validictory";
|
|
license = licenses.mit;
|
|
};
|
|
|
|
}
|