e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
50 lines
1.2 KiB
Nix
50 lines
1.2 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pytestCheckHook
|
|
, pythonAtLeast
|
|
, pythonOlder
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "frozendict";
|
|
version = "2.4.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Marco-Sulla";
|
|
repo = "python-frozendict";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-mC5udKWez1s9JiVthtzCwEUPLheJpxRmcL3KdRiYP18=";
|
|
};
|
|
|
|
# build C version if it exists
|
|
preBuild = ''
|
|
version_str=$(python -c 'import sys; print("_".join(map(str, sys.version_info[:2])))')
|
|
if test -f src/frozendict/c_src/$version_str/frozendictobject.c; then
|
|
export CIBUILDWHEEL=1
|
|
export FROZENDICT_PURE_PY=0
|
|
else
|
|
export CIBUILDWHEEL=0
|
|
export FROZENDICT_PURE_PY=1
|
|
fi
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"frozendict"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Module for immutable dictionary";
|
|
homepage = "https://github.com/Marco-Sulla/python-frozendict";
|
|
changelog = "https://github.com/Marco-Sulla/python-frozendict/releases/tag/v${version}";
|
|
license = licenses.lgpl3Only;
|
|
maintainers = with maintainers; [ pbsds ];
|
|
};
|
|
}
|