nixpkgs/pkgs/development/python-modules/jsonable/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.1 KiB
Nix
Raw Normal View History

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
fetchpatch2,
2024-07-29 00:54:34 -04:00
setuptools,
}:
buildPythonPackage rec {
pname = "jsonable";
version = "0.3.1";
2024-07-29 00:54:34 -04:00
pyproject = true;
src = fetchFromGitHub {
owner = "halfak";
repo = "python-jsonable";
tag = version;
hash = "sha256-3FIzG2djSZOPDdoYeKqs3obQjgHrFtyp0sdBwZakkHA=";
};
patches = [
# https://github.com/halfak/python-jsonable/pull/2
(fetchpatch2 {
name = "eq-to-assert.patch";
url = "https://github.com/halfak/python-jsonable/pull/2/commits/335e61bb4926e644aef983f7313793bf506d2463.patch";
hash = "sha256-tCVA0wG+UMyB6oaNf4nbZ2BPWkNumaGPcjP5VJKegBo=";
})
];
2024-07-29 00:54:34 -04:00
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "jsonable" ];
2024-07-29 00:54:34 -04:00
meta = {
description = "Provides an abstract base class and utilities for defining trivially JSONable python objects";
homepage = "https://github.com/halfak/python-jsonable";
2024-07-29 00:54:34 -04:00
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}