linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / pox / default.nix
blob24591824e07d1b1ef39bcb08e0d528aaaca919e9
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "pox";
8   version = "0.2.7";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "06afe1a4a1dbf8b47f7ad5a3c1d8ada9104c64933a1da11338269a2bd8642778";
13   };
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   };