about summary refs log tree commit diff
path: root/pkgs/development/python-modules/unix-ar/default.nix
blob: d77c542b3a9e6f900b9218fbeff817f05a6afbed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:

buildPythonPackage rec {
  pname = "unix-ar";
  version = "0.2.1";
  format = "wheel";

  disabled = pythonOlder "3.7";

  src = fetchPypi {
    inherit format version;
    pname = "unix_ar";
    hash = "sha256-Kstxi8Ewi/gOW52iYU2CQswv475M2LL9Rxm84Ymq/PE=";
  };

  meta = with lib; {
    description = "AR file handling for Python (including .deb files)";
    homepage = "https://github.com/getninjas/unix_ar";
    license = licenses.bsd3;
    maintainers = with maintainers; [ tirimia ];
    platforms = with platforms; linux ++ darwin;
  };
}