Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.03 450 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 pname = "pox"; 8 version = "0.2.5"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "2b53fbdf02596240483dc2cb94f94cc21252ad1b1858c7b1c151afeec9022cc8"; 13 }; 14 15 meta = with stdenv.lib; { 16 description = "Utilities for filesystem exploration and automated builds"; 17 license = licenses.bsd3; 18 homepage = http://www.cacr.caltech.edu/~mmckerns/pox.htm; 19 }; 20 21}