python3Packages.unix-ar: init at 0.2.1

This commit is contained in:
Theodor-Alexandru Irimia
2023-12-11 14:19:03 +01:00
parent 39899cea55
commit bc98e1c457
2 changed files with 29 additions and 0 deletions
@@ -0,0 +1,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;
};
}
+2
View File
@@ -15455,6 +15455,8 @@ self: super: with self; {
universal-silabs-flasher = callPackage ../development/python-modules/universal-silabs-flasher { };
unix-ar = callPackage ../development/python-modules/unix-ar { };
unpaddedbase64 = callPackage ../development/python-modules/unpaddedbase64 { };
unrardll = callPackage ../development/python-modules/unrardll { };