fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
28 lines
609 B
Nix
28 lines
609 B
Nix
{
|
|
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;
|
|
};
|
|
}
|