1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "pox";
8 version = "0.2.7";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "06afe1a4a1dbf8b47f7ad5a3c1d8ada9104c64933a1da11338269a2bd8642778";
13 };
14
15 meta = with lib; {
16 description = "Utilities for filesystem exploration and automated builds";
17 license = licenses.bsd3;
18 homepage = "https://github.com/uqfoundation/pox/";
19 };
20
21}