02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
38 lines
767 B
Nix
38 lines
767 B
Nix
{ lib, buildPythonPackage, fetchPypi
|
|
, attrs
|
|
, jsonpickle
|
|
, pbr
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jschema-to-python";
|
|
version = "1.2.3";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
pname = "jschema_to_python";
|
|
inherit version;
|
|
sha256 = "76ff14fe5d304708ccad1284e4b11f96a658949a31ee7faed9e0995279549b91";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
attrs
|
|
jsonpickle
|
|
pbr
|
|
];
|
|
|
|
nativeCheckInputs =[
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "jschema_to_python" ];
|
|
|
|
meta = with lib; {
|
|
description = "Generate source code for Python classes from a JSON schema";
|
|
homepage = "https://github.com/microsoft/jschema-to-python";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jonringer ];
|
|
};
|
|
}
|