Merge pull request #690 from bjornfor/python-demjson
python-demjson: new package
This commit is contained in:
commit
d580cc21d8
@ -997,6 +997,30 @@ pythonPackages = python.modules // rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
demjson = buildPythonPackage rec {
|
||||||
|
name = "demjson-1.6";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://pypi.python.org/packages/source/d/demjson/${name}.tar.gz";
|
||||||
|
sha256 = "0abf7wqqq7rk1sycy47ayn5p93yy7gjq50cb2z69wmik1qqrr60x";
|
||||||
|
};
|
||||||
|
|
||||||
|
doCheck = false; # there are no tests
|
||||||
|
|
||||||
|
preFixup = ''
|
||||||
|
mkdir -p "$out/bin"
|
||||||
|
cp jsonlint "$out/bin/"
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Encoder/decoder and lint/validator for JSON (JavaScript Object Notation)";
|
||||||
|
homepage = http://deron.meranda.us/python/demjson/;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ bjornfor ];
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
evdev = buildPythonPackage rec {
|
evdev = buildPythonPackage rec {
|
||||||
version = "0.3.2";
|
version = "0.3.2";
|
||||||
name = "evdev-${version}";
|
name = "evdev-${version}";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user