nixpkgs/pkgs/development/python-modules/immutables/default.nix

20 lines
521 B
Nix
Raw Normal View History

2018-05-08 15:14:03 -07:00
{ lib, buildPythonPackage, fetchPypi, pythonOlder }:
buildPythonPackage rec {
pname = "immutables";
version = "0.15";
2018-05-08 15:14:03 -07:00
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "3713ab1ebbb6946b7ce1387bb9d1d7f5e09c45add58c2a2ee65f963c171e746b";
2018-05-08 15:14:03 -07:00
};
meta = {
description = "An immutable mapping type for Python";
homepage = "https://github.com/MagicStack/immutables";
2018-05-08 15:14:03 -07:00
license = with lib.licenses; [ asl20 ];
maintainers = with lib.maintainers; [ catern ];
};
}