nixpkgs/pkgs/development/python-modules/exiv2/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
1.5 KiB
Nix
Raw Permalink Normal View History

2024-04-01 17:40:12 +00:00
{
lib,
pkg-config,
exiv2,
2024-08-21 01:01:32 +00:00
gettext,
2024-04-01 17:40:12 +00:00
fetchFromGitHub,
gitUpdater,
buildPythonPackage,
setuptools,
toml,
unittestCheckHook,
2024-04-01 17:40:12 +00:00
}:
buildPythonPackage rec {
2024-04-01 17:40:12 +00:00
pname = "exiv2";
version = "0.17.1";
2024-04-01 17:40:12 +00:00
pyproject = true;
src = fetchFromGitHub {
owner = "jim-easterbrook";
repo = "python-exiv2";
rev = "refs/tags/${version}";
hash = "sha256-AXBhCe7AvhQkGZaLMTGExwgUYQGdRkk14Rtceugexag=";
2024-04-01 17:40:12 +00:00
};
2024-08-21 01:01:32 +00:00
# FAIL: test_localisation (test_types.TestTypesModule.test_localisation)
# FAIL: test_TimeValue (test_value.TestValueModule.test_TimeValue)
postPatch = ''
substituteInPlace tests/test_value.py \
--replace-fail "def test_TimeValue(self):" "@unittest.skip('skipping')
def test_TimeValue(self):"
substituteInPlace tests/test_types.py \
--replace-fail "def test_localisation(self):" "@unittest.skip('skipping')
def test_localisation(self):"
'';
build-system = [
2024-04-01 17:40:12 +00:00
setuptools
toml
];
nativeBuildInputs = [ pkg-config ];
2024-08-21 01:01:32 +00:00
buildInputs = [
exiv2
gettext
];
2024-04-01 17:40:12 +00:00
pythonImportsCheck = [ "exiv2" ];
nativeCheckInputs = [ unittestCheckHook ];
2024-04-01 17:40:12 +00:00
unittestFlagsArray = [
"-s"
"tests"
"-v"
];
passthru.updateScript = gitUpdater { };
meta = {
description = "Low level Python interface to the Exiv2 C++ library";
homepage = "https://github.com/jim-easterbrook/python-exiv2";
changelog = "https://python-exiv2.readthedocs.io/en/release-${version}/misc/changelog.html";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ zebreus ];
};
}