depot/third_party/nixpkgs/pkgs/development/python-modules/dirtyjson/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

37 lines
742 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "dirtyjson";
version = "1.0.8";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-kMpKGPP/MM6EnRANz0oAOVPHnTojSO8Fbx2cIiMaJf0=";
};
nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "dirtyjson" ];
meta = with lib; {
description = "JSON decoder for Python that can extract data from the muck";
homepage = "https://github.com/codecobblers/dirtyjson";
license = with licenses; [
afl21 # and
mit
];
maintainers = with maintainers; [ fab ];
};
}