2020-09-09 06:18:08 +01:00
|
|
|
{ buildPythonPackage, fetchPypi, lib, jq }:
|
2019-01-19 02:01:19 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "jq";
|
2020-11-05 02:21:12 +00:00
|
|
|
version = "1.1.1";
|
2019-01-19 02:01:19 +00:00
|
|
|
|
2020-08-15 01:46:13 +01:00
|
|
|
src = fetchPypi {
|
2019-01-19 02:01:19 +00:00
|
|
|
inherit pname version;
|
2020-11-05 02:21:12 +00:00
|
|
|
sha256 = "62d649c4f6f26ed91810c8db075f5fe05319c3dc99dbebcd2d31b0b697a4592e";
|
2019-01-19 02:01:19 +00:00
|
|
|
};
|
|
|
|
patches = [ ./jq-py-setup.patch ];
|
|
|
|
|
|
|
|
buildInputs = [ jq ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Python bindings for jq, the flexible JSON processor";
|
|
|
|
homepage = "https://github.com/mwilliamson/jq.py";
|
|
|
|
license = lib.licenses.bsd2;
|
|
|
|
maintainers = with lib.maintainers; [ benley ];
|
|
|
|
};
|
|
|
|
}
|