3
0
Fork 0
forked from mirrors/nixpkgs

python3Packages.frozenlist: 1.2.0 -> 1.3.0

This commit is contained in:
Fabian Affolter 2022-01-26 11:07:17 +01:00
parent fbe1a4e939
commit c6d57ed150

View file

@ -8,14 +8,16 @@
buildPythonPackage rec {
pname = "frozenlist";
version = "1.2.0";
disabled = pythonOlder "3.6";
version = "1.3.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "aio-libs";
repo = pname;
rev = "v${version}";
sha256 = "sha256-rTbekdceC5QK0aiySi/4QUwaEoDfTlLrx2t6Kb9bH7U=";
hash = "sha256-cHKqkvsBUN7If+8swbd6aafFrSgnop3YlweBLPOHzyU=";
};
nativeBuildInputs = [
@ -35,7 +37,9 @@ buildPythonPackage rec {
cython frozenlist/_frozenlist.pyx
'';
pythonImportsCheck = [ "frozenlist" ];
pythonImportsCheck = [
"frozenlist"
];
meta = with lib; {
description = "Python module for list-like structure";