nixpkgs/pkgs/development/python-modules/logilab/constraint.nix
natsukium 6d24d4234b
python310Packages.logilab-constraint: refactor
- pretty formatting
- enable checkPhase
- update meta
2023-09-02 12:55:31 +09:00

58 lines
1.2 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, importlib-metadata
, logilab-common
, pip
, six
, pytestCheckHook
, setuptools
}:
buildPythonPackage rec {
pname = "logilab-constraint";
version = "0.6.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-Jk6wvvcDEeHfy7dUcjbnzFIeGBYm5tXzCI26yy+t2qs=";
};
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 = with lib.maintainers; [ ];
};
}