My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/jsonref/default.nix

26 lines
587 B

{ 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;
};
}