File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
pkgs/development/python-modules/jsonable Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 44 fetchFromGitHub ,
55 pytestCheckHook ,
66 fetchpatch2 ,
7+ setuptools ,
78} :
89
910buildPythonPackage rec {
1011 pname = "jsonable" ;
1112 version = "0.3.1" ;
12- format = "setuptools" ;
13+ pyproject = true ;
1314
1415 src = fetchFromGitHub {
1516 owner = "halfak" ;
@@ -27,14 +28,16 @@ buildPythonPackage rec {
2728 } )
2829 ] ;
2930
31+ build-system = [ setuptools ] ;
32+
3033 nativeCheckInputs = [ pytestCheckHook ] ;
3134
3235 pythonImportsCheck = [ "jsonable" ] ;
3336
34- meta = with lib ; {
37+ meta = {
3538 description = "Provides an abstract base class and utilities for defining trivially JSONable python objects" ;
3639 homepage = "https://github.com/halfak/python-jsonable" ;
37- license = licenses . mit ;
38- maintainers = with maintainers ; [ GaetanLepage ] ;
40+ license = lib . licenses . mit ;
41+ maintainers = with lib . maintainers ; [ GaetanLepage ] ;
3942 } ;
4043}
You can’t perform that action at this time.
0 commit comments