summary refs log tree commit diff
path: root/pkgs/development/python-modules/coreschema/default.nix
blob: 949fa31df95816062198269ef4703b4fb7b58e98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
  stdenv,
  fetchFromGitHub,
  buildPythonPackage,
  jinja2,
  pytest,
}:

buildPythonPackage rec {
  pname = "coreschema";
  version = "0.0.4";

  src = fetchFromGitHub {
    repo = "python-coreschema";
    owner = "core-api";
    rev = version;
    sha256 = "027pc753mkgbb3r1v1x7dsdaarq93drx0f79ppvw9pfkcjcq6wb1";
  };

  propagatedBuildInputs = [ jinja2 ];

  checkInputs = [ pytest ];
  checkPhase = ''
    cd ./tests
    pytest
  '';

  meta = with stdenv.lib; {
    description = "Python client library for Core Schema";
    homepage = https://github.com/ivegotasthma/python-coreschema;
    license = licenses.bsd3;
    maintainers = with maintainers; [ ivegotasthma ];
  };
}