python3Packages.ar: init at 1.0.0
Signed-off-by: Ethan Carter Edwards <ethan@ethancedwards.com>
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
hatchling,
|
||||
hatch-vcs,
|
||||
pytestCheckHook,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ar";
|
||||
version = "1.0.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "vidstige";
|
||||
repo = "ar";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-azbqlSO5YE6zMrDoVNLDyGeed5H4mSyNEE02AmoZIDs=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
hatchling
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
hatch-vcs
|
||||
];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
|
||||
pythonImportsCheck = [ "ar" ];
|
||||
|
||||
disabledTests = lib.optionals stdenv.isDarwin [
|
||||
"test_list"
|
||||
"test_read_content"
|
||||
"test_read_binary"
|
||||
"test_read_content_ext"
|
||||
"test_read_binary_ext"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Implementation of the ar archive format";
|
||||
homepage = "https://github.com/vidstige/ar";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ ethancedwards8 ];
|
||||
};
|
||||
}
|
||||
@@ -829,6 +829,8 @@ self: super: with self; {
|
||||
|
||||
aqualogic = callPackage ../development/python-modules/aqualogic { };
|
||||
|
||||
ar = callPackage ../development/python-modules/ar { };
|
||||
|
||||
arabic-reshaper = callPackage ../development/python-modules/arabic-reshaper { };
|
||||
|
||||
aranet4 = callPackage ../development/python-modules/aranet4 { };
|
||||
|
||||
Reference in New Issue
Block a user