about summary refs log tree commit diff
path: root/pkgs/development/python-modules/jsonref/default.nix
blob: 17a1102bda8e7577ecdb93b2f0f41b7fa13ddd8c (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
{ stdenv, buildPythonPackage, fetchPypi
, pytest, mock }:

buildPythonPackage rec {
  pname = "jsonref";
  version = "0.1";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1lqa8dy1sr1bxi00ri79lmbxvzxi84ki8p46zynyrgcqhwicxq2n";
  };

  buildInputs = [ pytest mock ];

  checkPhase = ''
    py.test tests.py
  '';

  meta = with stdenv.lib; {
    description = "An implementation of JSON Reference for Python";
    homepage    = "https://github.com/gazpachoking/jsonref";
    license     = licenses.mit;
    maintainers = with maintainers; [ nand0p ];
    platforms   = platforms.all;
  };
}