at 24.11-pre 641 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 pythonOlder, 6}: 7 8buildPythonPackage rec { 9 pname = "pox"; 10 version = "0.3.4"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 hash = "sha256-FubsqE8b7DgoIQsGsFKt8EzyqyDCL9b77194Mgyab+0="; 18 }; 19 20 # Test sare failing the sandbox 21 doCheck = false; 22 23 pythonImportsCheck = [ "pox" ]; 24 25 meta = with lib; { 26 description = "Utilities for filesystem exploration and automated builds"; 27 mainProgram = "pox"; 28 homepage = "https://pox.readthedocs.io/"; 29 license = licenses.bsd3; 30 maintainers = with maintainers; [ ]; 31 }; 32}