Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / jschema-to-python / default.nix
blobfcd80c652d4131d9698937ebf56f2ea5b8b54a14
1 { lib, buildPythonPackage, fetchPypi
2 , attrs
3 , jsonpickle
4 , pbr
5 , pytestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "jschema-to-python";
10   version = "1.2.3";
11   format = "setuptools";
13   src = fetchPypi {
14     pname = "jschema_to_python";
15     inherit version;
16     sha256 = "76ff14fe5d304708ccad1284e4b11f96a658949a31ee7faed9e0995279549b91";
17   };
19   propagatedBuildInputs = [
20     attrs
21     jsonpickle
22     pbr
23   ];
25   nativeCheckInputs =[
26     pytestCheckHook
27   ];
29   pythonImportsCheck = [ "jschema_to_python" ];
31   meta = with lib; {
32     description = "Generate source code for Python classes from a JSON schema";
33     homepage = "https://github.com/microsoft/jschema-to-python";
34     license = licenses.mit;
35     maintainers = with maintainers; [ jonringer ];
36   };