mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
56 lines
1.2 KiB
Nix
56 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
importlib-metadata,
|
|
logilab-common,
|
|
pip,
|
|
six,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "logilab-constraint";
|
|
version = "1.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-UiE1FsHYJxvJd+lqCQKJQkAHXa5iRQYEzU9nDgrR6YY=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
importlib-metadata
|
|
pip
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
logilab-common
|
|
setuptools
|
|
six
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
preCheck = ''
|
|
# avoid ModuleNotFoundError: No module named 'logilab.common' due to namespace
|
|
rm -r logilab
|
|
'';
|
|
|
|
disabledTests = [
|
|
# these tests are abstract test classes intended to be inherited
|
|
"Abstract"
|
|
];
|
|
|
|
pythonImportsCheck = [ "logilab.constraint" ];
|
|
|
|
meta = with lib; {
|
|
description = "logilab-database provides some classes to make unified access to different";
|
|
homepage = "https://forge.extranet.logilab.fr/open-source/logilab-constraint";
|
|
changelog = "https://forge.extranet.logilab.fr/open-source/logilab-constraint/-/blob/${version}/CHANGELOG.md";
|
|
license = licenses.lgpl21Plus;
|
|
maintainers = [ ];
|
|
};
|
|
}
|