File tree Expand file tree Collapse file tree
pkgs/development/python-modules/ploomber-extension Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 lib ,
3+ stdenv ,
34 buildPythonPackage ,
4- pythonOlder ,
55 fetchPypi ,
66 hatchling ,
77 hatch-jupyter-builder ,
1515buildPythonPackage rec {
1616 pname = "ploomber-extension" ;
1717 version = "0.1.1" ;
18-
1918 pyproject = true ;
20- disabled = pythonOlder "3.6" ;
2119
2220 # using pypi archive which includes pre-built assets
2321 src = fetchPypi {
@@ -40,12 +38,15 @@ buildPythonPackage rec {
4038 pytest-jupyter
4139 ] ;
4240
41+ # Tests fail on Darwin when sandboxed
42+ doCheck = ! stdenv . buildPlatform . isDarwin ;
43+
4344 pythonImportsCheck = [ "ploomber_extension" ] ;
4445
45- meta = with lib ; {
46+ meta = {
4647 description = "Ploomber extension" ;
4748 homepage = "https://pypi.org/project/ploomber-extension" ;
48- license = licenses . bsd3 ;
49- maintainers = with maintainers ; [ euxane ] ;
49+ license = lib . licenses . bsd3 ;
50+ maintainers = [ lib . maintainers . euxane ] ;
5051 } ;
5152}
You can’t perform that action at this time.
0 commit comments