nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 29 lines 569 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5}: 6 7buildPythonPackage rec { 8 pname = "pox"; 9 version = "0.3.7"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 inherit pname version; 14 hash = "sha256-BlL28hA/5tS6Y4vrb6jT6KaP1EvLYzFcYUEYUVvMOvs="; 15 }; 16 17 # Test sare failing the sandbox 18 doCheck = false; 19 20 pythonImportsCheck = [ "pox" ]; 21 22 meta = { 23 description = "Utilities for filesystem exploration and automated builds"; 24 mainProgram = "pox"; 25 homepage = "https://pox.readthedocs.io/"; 26 license = lib.licenses.bsd3; 27 maintainers = [ ]; 28 }; 29}