mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
pythonPackages.jsonref: init at 0.1
Tested on Linux Tested on Darwin
This commit is contained in:
parent
e8d326a438
commit
251e67af5c
|
@ -29579,4 +29579,28 @@ in modules // {
|
|||
platforms = platforms.all;
|
||||
};
|
||||
};
|
||||
|
||||
jsonref = buildPythonPackage rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "jsonref";
|
||||
version = "0.1";
|
||||
|
||||
meta = {
|
||||
description = "An implementation of JSON Reference for Python.";
|
||||
homepage = "http://github.com/gazpachoking/jsonref";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ nand0p ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
|
||||
buildInputs = with self; [ pytest mock ];
|
||||
checkPhase = ''
|
||||
py.test tests.py
|
||||
'';
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "mirror://pypi/j/${pname}/${name}.tar.gz";
|
||||
sha256 = "1lqa8dy1sr1bxi00ri79lmbxvzxi84ki8p46zynyrgcqhwicxq2n";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue