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