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
52 lines
999 B
Nix
52 lines
999 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonOlder,
|
|
# build inputs
|
|
setuptools,
|
|
setuptools-scm,
|
|
typing-extensions,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "widlparser";
|
|
version = "1.1.5";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "plinss";
|
|
repo = "widlparser";
|
|
rev = "v${version}";
|
|
hash = "sha256-G5N29K0/ByfKwP1XfxZH9u/5x361JD/8qAD6eZaySnU=";
|
|
};
|
|
|
|
build-system = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
dependencies = [ typing-extensions ];
|
|
|
|
pythonImportsCheck = [ "widlparser" ];
|
|
|
|
# https://github.com/plinss/widlparser/blob/v1.1.5/.github/workflows/test.yml
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
|
|
python test.py > test-actual.txt
|
|
diff -u test-expected.txt test-actual.txt
|
|
|
|
runHook postCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Stand-alone WebIDL Parser in Python";
|
|
homepage = "https://github.com/plinss/widlparser";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|