python3Packages.unix-ar: init at 0.2.1
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
||||
@@ -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 { };
|
||||
|
||||
Reference in New Issue
Block a user