Merge pull request #330777 from pyrox0/denose/jsonable

python312Packages.jsonable: drop nose dependency; modernize
This commit is contained in:
Gaétan Lepage 2024-07-29 08:17:56 +02:00 committed by GitHub
commit 335a118f40
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,14 +2,15 @@
lib,
buildPythonPackage,
fetchFromGitHub,
nose,
pytestCheckHook,
fetchpatch2,
setuptools,
}:
buildPythonPackage rec {
pname = "jsonable";
version = "0.3.1";
format = "setuptools";
pyproject = true;
src = fetchFromGitHub {
owner = "halfak";
@ -18,17 +19,25 @@ buildPythonPackage rec {
hash = "sha256-3FIzG2djSZOPDdoYeKqs3obQjgHrFtyp0sdBwZakkHA=";
};
nativeCheckInputs = [
nose
pytestCheckHook
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=";
})
];
build-system = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "jsonable" ];
meta = with lib; {
meta = {
description = "Provides an abstract base class and utilities for defining trivially JSONable python objects";
homepage = "https://github.com/halfak/python-jsonable";
license = licenses.mit;
maintainers = with maintainers; [ GaetanLepage ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}