1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 pythonOlder,
6}:
7
8buildPythonPackage rec {
9 pname = "unix-ar";
10 version = "0.2.1";
11 format = "wheel";
12
13 disabled = pythonOlder "3.7";
14
15 src = fetchPypi {
16 inherit format version;
17 pname = "unix_ar";
18 hash = "sha256-Kstxi8Ewi/gOW52iYU2CQswv475M2LL9Rxm84Ymq/PE=";
19 };
20
21 meta = with lib; {
22 description = "AR file handling for Python (including .deb files)";
23 homepage = "https://github.com/getninjas/unix_ar";
24 license = licenses.bsd3;
25 maintainers = with maintainers; [ tirimia ];
26 platforms = with platforms; linux ++ darwin;
27 };
28}