a19cd4ffb1
This reverts commit65a333600d. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 /758551e458
43 lines
857 B
Nix
43 lines
857 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitLab,
|
|
setuptools,
|
|
pytestCheckHook,
|
|
beautifulsoup4,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "airium";
|
|
version = "0.2.6";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "kamichal";
|
|
repo = "airium";
|
|
rev = "v${version}";
|
|
hash = "sha256-qAU+rmj2ZHw7KdxVvRyponcPiRcyENfDyW1y9JTiwsY=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ setuptools ];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
beautifulsoup4
|
|
];
|
|
|
|
# tests require internet access, broken in sandbox
|
|
disabledTests = [
|
|
"test_get_bad_content_type"
|
|
"test_translate_remote_file"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Bidirectional HTML-python translator";
|
|
mainProgram = "airium";
|
|
homepage = "https://gitlab.com/kamichal/airium";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ hulr ];
|
|
};
|
|
}
|