depot/third_party/nixpkgs/pkgs/development/python-modules/jsonref/default.nix
Default email 3e2acf8aff Project import generated by Copybara.
GitOrigin-RevId: d42cd445dde587e9a993cd9434cb43da07c4c5de
2021-05-20 18:08:51 -05:00

26 lines
587 B
Nix

{ lib, buildPythonPackage, fetchPypi
, pytest, mock }:
buildPythonPackage rec {
pname = "jsonref";
version = "0.2";
src = fetchPypi {
inherit pname version;
sha256 = "15v69rg2lkcykb2spnq6vbbirv9sfq480fnwmfppw9gn3h95pi7k";
};
checkInputs = [ pytest mock ];
checkPhase = ''
py.test tests.py
'';
meta = with lib; {
description = "An implementation of JSON Reference for Python";
homepage = "https://github.com/gazpachoking/jsonref";
license = licenses.mit;
maintainers = with maintainers; [ ];
platforms = platforms.all;
};
}