at master 623 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 pythonOlder, 6}: 7 8buildPythonPackage rec { 9 pname = "pox"; 10 version = "0.3.6"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 hash = "sha256-hO7tOWABWaYoBKrPwA41Pt6q5n2MZHzKqrc6bv7T9gU="; 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 = [ ]; 31 }; 32}