2018-05-09 00:14:03 +02:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, pythonOlder }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "immutables";
|
2020-05-23 15:30:50 +02:00
|
|
|
version = "0.14";
|
2018-05-09 00:14:03 +02:00
|
|
|
disabled = pythonOlder "3.5";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-05-23 15:30:50 +02:00
|
|
|
sha256 = "0y0aqw29g525frdnmv9paljzacpp4s21sadfbca5b137iciwr8d0";
|
2018-05-09 00:14:03 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "An immutable mapping type for Python";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/MagicStack/immutables";
|
2018-05-09 00:14:03 +02:00
|
|
|
license = with lib.licenses; [ asl20 ];
|
|
|
|
maintainers = with lib.maintainers; [ catern ];
|
|
|
|
};
|
|
|
|
}
|