mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
28 lines
575 B
Nix
28 lines
575 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "json-merge-patch";
|
|
version = "0.3.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "json_merge_patch";
|
|
inherit version;
|
|
sha256 = "sha256-SgItePwvCctJ2Wxkbvw4DTterStcfaviLDkowsLpxOA=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
meta = with lib; {
|
|
description = "JSON Merge Patch library";
|
|
mainProgram = "json-merge-patch";
|
|
homepage = "https://github.com/open-contracting/json-merge-patch";
|
|
license = licenses.bsd3;
|
|
maintainers = [ ];
|
|
};
|
|
}
|