mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-03-08 09:04:16 +01:00
https://github.com/sqlobject/sqlobject/blob/3.13.1/docs/News.rst This commit was automatically generated using update-python-libraries.
50 lines
1,009 B
Nix
50 lines
1,009 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
formencode,
|
|
pastedeploy,
|
|
paste,
|
|
pydispatcher,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "sqlobject";
|
|
version = "3.13.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sqlobject";
|
|
repo = "sqlobject";
|
|
tag = version;
|
|
hash = "sha256-Qbb48z4DrD/M8e26+5NjPcA0b3gxHeAxj1X/jSrTwx0=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
formencode
|
|
paste
|
|
pastedeploy
|
|
pydispatcher
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
disabledTests = [
|
|
# https://github.com/sqlobject/sqlobject/issues/179
|
|
"test_fail"
|
|
];
|
|
|
|
pythonImportsCheck = [ "sqlobject" ];
|
|
|
|
meta = {
|
|
description = "Object Relational Manager for providing an object interface to your database";
|
|
homepage = "https://www.sqlobject.org/";
|
|
changelog = "https://github.com/sqlobject/sqlobject/blob/${src.tag}/docs/News.rst";
|
|
license = lib.licenses.lgpl21Only;
|
|
maintainers = [ ];
|
|
};
|
|
}
|